veloren/server-cli/docker-compose.yml
Marcel Märtens c558c9de7c fix server-cli tracing accepting RUST_LOG env var and pass RUST_LOG via docker-compose rather than hardcoding it
- however RUST_BACKTRACE=1 is still hardcoded as its probably useful
- dont spam the server-cli with debug
2020-06-29 11:05:55 +02:00

20 lines
507 B
YAML

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