39 lines
611 B
YAML
39 lines
611 B
YAML
services:
|
|
cssds:
|
|
image: megastructure/cssds
|
|
|
|
build:
|
|
dockerfile: cssds.dockerfile
|
|
context: ./etc
|
|
|
|
user: "1000:1000"
|
|
|
|
env_file:
|
|
- .env
|
|
|
|
command: sleep 5000000
|
|
|
|
ports:
|
|
- "27015:27015"
|
|
- "27015:27015/udp"
|
|
- "27020:27020"
|
|
|
|
volumes:
|
|
- ./etc:/home/steam/etc
|
|
- ./data/cssds:/home/steam/cssds
|
|
- tf2ds:/home/steam/tf2ds
|
|
|
|
db:
|
|
image: mariadb:12
|
|
restart: always
|
|
ports:
|
|
- "3306:3306"
|
|
env_file:
|
|
- .env
|
|
|
|
volumes:
|
|
- ./etc/mariadb/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d
|
|
|
|
volumes:
|
|
tf2ds:
|