Compare commits

..

2 Commits

Author SHA1 Message Date
9eb278d7c4 Update memory settings 2023-10-06 01:08:09 -05:00
22dad3a6ee New serber 2023-10-06 01:06:02 -05:00
2 changed files with 22 additions and 0 deletions

View File

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

View File

@ -0,0 +1,21 @@
# 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"
MEMORY: "6G"
ports:
- "25565:25565/tcp"
- "25565:25565/udp"
- "24454:24454/udp"
volumes:
- /data/srv/packs:/modpacks
- /data/minecraft/prominence:/data
tags: [ docker, minecraft, prominence, prom ]