Add palworld, but disabled

just in case
This commit is contained in:
Salt 2024-01-23 12:37:03 -06:00
parent f2d137ebe7
commit a3ce7a4235
2 changed files with 27 additions and 0 deletions

View File

@ -39,6 +39,7 @@
- game/minecraft-vanilla.yml
- game/minecraft-prominence2.yml
- game/minecraft-stoneblock.yml
- game/palworld.yml
- game/satisfactory.yml
- game/zomboid.yml
tags: [ always ]

View File

@ -0,0 +1,26 @@
# vim:ft=ansible:
- name: docker deploy palworld
docker_container:
name: palworld
state: absent
image: thijsvanloef/palworld-server-docker:latest
restart_policy: unless-stopped
pull: yes
env:
ADMIN_PASSWORD: "balltoucher69"
COMMUNITY: "false"
MULTITHREADING: "true"
PUID: "1000"
PGID: "1000"
PORT: "8211"
PLAYERS: "8"
RCON_ENABLED: "false"
SERVER_NAME: "The Salty Spitoon"
SERVER_PASSWORD: "dicks"
UPDATE_ON_BOOT: "true"
ports:
- '8211:8211/udp'
- '27015:27015/udp'
volumes:
- /data/palworld/:/palworld
tags: [ docker, palworld ]