New serber

This commit is contained in:
Salt 2023-10-06 01:06:02 -05:00
parent 2c8d3b9c8f
commit 22dad3a6ee
2 changed files with 21 additions and 0 deletions

View File

@ -36,6 +36,7 @@
- game/factorio.yml
- game/minecraft-create-extra.yml
- game/minecraft-vanilla.yml
- game/minecraft-prominence2.yml
- game/satisfactory.yml
- game/zomboid.yml
tags: [ always ]

View File

@ -0,0 +1,20 @@
# vim:ft=ansible:
- name: docker deploy minecraft - prominence 2
docker_container:
name: minecraft-prominence
state: started
image: itzg/minecraft-server:latest
restart_policy: unless-stopped
pull: yes
env:
EULA: "true"
CF_SERVER_MOD: "/modpacks/1.20.1-prominence2-1.3.5/server.zip"
TYPE: "CURSEFORGE"
ports:
- "25565:25565/tcp"
- "25565:25565/udp"
- "24454:24454/udp"
volumes:
- /data/srv/packs:/modpacks
- /data/minecraft/prominence:/data
tags: [ docker, minecraft, prominence, prom ]