2020-03-22 14:56:14 +00:00
|
|
|
version: "3.5"
|
2020-02-25 23:10:00 +00:00
|
|
|
|
|
|
|
services:
|
|
|
|
game-server:
|
2022-09-09 12:25:27 +00:00
|
|
|
image: registry.gitlab.com/veloren/veloren/server-cli:weekly
|
2021-05-10 18:42:05 +00:00
|
|
|
stdin_open: true
|
2021-05-11 11:13:22 +00:00
|
|
|
tty: true
|
2020-04-15 12:49:33 +00:00
|
|
|
container_name: veloren-game-server-master
|
2020-02-25 23:10:00 +00:00
|
|
|
ports:
|
|
|
|
- "14004:14004"
|
|
|
|
- "14005:14005"
|
2020-04-15 12:49:33 +00:00
|
|
|
restart: on-failure:0
|
2020-05-09 15:41:25 +00:00
|
|
|
volumes:
|
2020-10-05 08:48:29 +00:00
|
|
|
- "./userdata:/opt/userdata"
|
2020-06-29 08:53:43 +00:00
|
|
|
environment:
|
|
|
|
- RUST_LOG=debug,common::net=info
|
2020-03-22 14:56:14 +00:00
|
|
|
watchtower:
|
|
|
|
image: containrrr/watchtower
|
|
|
|
volumes:
|
|
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
2020-10-03 19:10:34 +00:00
|
|
|
command: --interval 30 --stop-timeout 130s --cleanup veloren-game-server-master
|
2023-02-09 19:41:59 +00:00
|
|
|
restart: on-failure:0
|