Add Satisfactory back into the mix! 1.0 lesgooooo!

This commit is contained in:
Salt 2024-09-11 18:42:40 -05:00
parent 658888bda8
commit 4c4108ab0a
2 changed files with 17 additions and 0 deletions

View File

@ -41,6 +41,7 @@
- game/minecraft-createfarming.yml - game/minecraft-createfarming.yml
- game/minecraft-magicpack.yml - game/minecraft-magicpack.yml
- game/zomboid.yml - game/zomboid.yml
- game/satisfactory.yml
tags: [ always ] tags: [ always ]
roles: roles:
- role: backup - role: backup

View File

@ -0,0 +1,16 @@
# vim:ft=ansible:
- name: docker deploy satisfactory
docker_container:
name: satisfactory
state: started
image: wolveix/satisfactory-server:latest
restart_policy: unless-stopped
pull: yes
env:
MAXPLAYERS: "8"
ports:
- '7777:7777/udp'
- '7777:7777/tcp'
volumes:
- /data/satisfactory/config:/config
tags: [ docker, satisfactory ]