Last active
February 24, 2021 15:47
-
-
Save mikegreen/d621d4b36ecc92753e95c70ebd28afe8 to your computer and use it in GitHub Desktop.
Valheim docker
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# started/using https://github.com/mbround18/valheim-docker | |
:/opt/docker-configs/valheim-server$ cat docker-compose.yml | |
version: "3" | |
services: | |
valheim: | |
image: mbround18/valheim:latest | |
restart: unless-stopped | |
ports: | |
- 2456:2456/udp | |
- 2457:2457/udp | |
- 2458:2458/udp | |
environment: | |
- PORT=2456 | |
- NAME="greenacres" | |
- WORLD="BananaBoat" | |
- PASSWORD="****" | |
- TZ=America/Denver | |
- PUBLIC=1 | |
- AUTO_UPDATE=0 | |
volumes: | |
- /opt/docker-configs/valheim-server/valheim/saves:/home/steam/.config/unity3d/IronGate/Valheim | |
- /opt/docker-configs/valheim-server/valheim/server:/home/steam/valheim |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment