2022-02-26 14:37:26 -03:00
|
|
|
---
|
|
|
|
|
version: "3.7"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
vhserver:
|
|
|
|
|
network_mode: host
|
|
|
|
|
image: "nosklo/valheim-base"
|
|
|
|
|
build:
|
|
|
|
|
context: .
|
|
|
|
|
dockerfile: valheim.Dockerfile
|
2022-02-28 10:40:30 -03:00
|
|
|
environment:
|
|
|
|
|
NAME: $VALHEIM_SERVER_NAME
|
2022-02-26 14:37:26 -03:00
|
|
|
# WORLD: ServerWorldFilename
|
2022-02-28 10:40:30 -03:00
|
|
|
PASSWORD: $VALHEIM_SERVER_PASSWORD
|
2022-02-26 14:37:26 -03:00
|
|
|
# SAVEDIR: /vhsave
|
|
|
|
|
# PUBLIC: 0
|
|
|
|
|
# PORT: 2456
|
|
|
|
|
ports:
|
|
|
|
|
- "2456-2457:2456-2457/udp"
|
|
|
|
|
volumes:
|
|
|
|
|
- "gameserver:/vhsave"
|
|
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
|
gameserver:
|