2022-09-25 04:04:09 -05:00
|
|
|
# vim:ft=ansible:
|
|
|
|
- name: docker deploy satisfactory
|
|
|
|
docker_container:
|
|
|
|
name: satisfactory
|
2023-05-17 19:17:42 -05:00
|
|
|
state: absent
|
2022-09-25 04:04:09 -05:00
|
|
|
image: wolveix/satisfactory-server:latest
|
|
|
|
restart_policy: unless-stopped
|
|
|
|
pull: yes
|
|
|
|
env:
|
|
|
|
MAXPLAYERS: "8"
|
|
|
|
ports:
|
|
|
|
- '7777:7777/udp'
|
|
|
|
- '15000:15000/udp'
|
|
|
|
- '15777:15777/udp'
|
|
|
|
volumes:
|
|
|
|
- /data/satisfactory/config:/config
|
|
|
|
tags: [ docker, satisfactory ]
|