mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
22 lines
572 B
YAML
22 lines
572 B
YAML
version: "3.5"
|
|
|
|
services:
|
|
game-server:
|
|
image: registry.gitlab.com/veloren/veloren/server-cli:weekly
|
|
stdin_open: true
|
|
tty: true
|
|
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
|