veloren/server-cli/docker-compose.yml
Marcel ea16fa10ab use different docker tags for master and nightly runs,
This allow us to decouple our test-ci from the release-ci and is necessary for multiple release channels in the future.
E.g. we can run a master build without it directly beeing pushed to watchtower and airshipper (config setting requiered on airshipper)
Adjust Tags for server-cli
2021-04-22 21:38:29 +02:00

20 lines
538 B
YAML

version: "3.5"
services:
game-server:
image: registry.gitlab.com/veloren/veloren/server-cli:nightly
container_name: veloren-game-server-master
ports:
- "14004:14004"
- "14005:14005"
restart: on-failure:0
volumes:
- "./userdata:/opt/userdata"
environment:
- RUST_LOG=debug,common::net=info
watchtower:
image: containrrr/watchtower
volumes:
- /var/run/docker.sock:/var/run/docker.sock
command: --interval 30 --stop-timeout 130s --cleanup veloren-game-server-master