docker-vintagestory/build-custom-example/docker-compose.yml

21 lines
391 B
YAML
Raw Normal View History

2020-09-20 20:10:08 +01:00
version: '3.8'
2020-07-24 07:53:22 +01:00
services:
vsserver:
build:
context: .
args:
vs_data_path: /gamedata/vs-custom/
2020-07-24 07:53:22 +01:00
container_name: vsserver
restart: always
2020-07-24 07:53:22 +01:00
volumes:
- gamedata:/gamedata
ports:
2020-12-06 16:02:08 +00:00
- target: 42420
published: 42420
protocol: tcp
# mode: host
environment:
VS_DATA_PATH: /gamedata/vs-custom
2020-07-24 07:53:22 +01:00
volumes:
gamedata: