20 lines
489 B
YAML
20 lines
489 B
YAML
# vim:ft=ansible:
|
|
- name: docker deploy css
|
|
docker_container:
|
|
name: css
|
|
state: started
|
|
image: foxylion/steam-css
|
|
restart_policy: unless-stopped
|
|
command: "/home/steam/entrypoint.sh update"
|
|
pull: yes
|
|
ports:
|
|
- "1200:1200"
|
|
- "26901:26901/udp"
|
|
- "27005:27005/udp"
|
|
- "27015:27015"
|
|
- "27015:27015/udp"
|
|
- "27020:27020/udp"
|
|
volumes:
|
|
- /data/css/server.cfg:/home/steam/css/cstrike/cfg/my-server.cfg
|
|
tags: [ docker, css ]
|