19 lines
504 B
YAML
19 lines
504 B
YAML
|
# vim:ft=ansible:
|
||
|
# https://github.com/mkrupczak3/SCP-SECRET-LAB-DOCKER
|
||
|
# Kinda forked it and changed a few settings tho
|
||
|
- name: docker deploy scpsl
|
||
|
docker_container:
|
||
|
name: scpsl
|
||
|
state: absent
|
||
|
image: rehashedsalt/scpsl:latest
|
||
|
restart_policy: unless-stopped
|
||
|
pull: yes
|
||
|
ports:
|
||
|
- "7777-7784:7777-7784/udp"
|
||
|
- "7777-7784:7777-7784"
|
||
|
volumes:
|
||
|
- /etc/localtime:/etc/localtime:ro
|
||
|
- /home/steam/steamcmd
|
||
|
- /home/steam/scp_server
|
||
|
tags: [ docker, scpsl ]
|