Decom prom, add stoneblock

This commit is contained in:
Salt 2023-11-30 10:06:23 -06:00
parent d7eff5fb99
commit a75084afb2
3 changed files with 21 additions and 9 deletions

View File

@ -38,6 +38,7 @@
- game/minecraft-create-extra.yml
- game/minecraft-vanilla.yml
- game/minecraft-prominence2.yml
- game/minecraft-stoneblock.yml
- game/satisfactory.yml
- game/zomboid.yml
tags: [ always ]
@ -59,14 +60,6 @@
- /data/shared/downloads
- /data/terraria/generic/backups
tags: [ backup ]
- role: docker-minecraft
vars:
minecraft_name: stoneblock
minecraft_external_port: "40504"
minecraft_pack_zip: "https://srv.9iron.club/files/packs/1.18.2-stoneblock-3/latest.zip"
minecraft_state: absent
minecraft_image: rehashedsalt/minecraft-forge:1.18.2-master
tags: [ minecraft, stoneblock ]
# - role: docker-tmodloader14
# tags: [ terraria, tmodloader ]
- role: git

View File

@ -2,7 +2,7 @@
- name: docker deploy minecraft - prominence 2
docker_container:
name: minecraft-prominence
state: started
state: absent
image: itzg/minecraft-server:latest
restart_policy: unless-stopped
pull: yes

View File

@ -0,0 +1,19 @@
# vim:ft=ansible:
- name: docker deploy minecraft - stoneblock
docker_container:
name: minecraft-stoneblock
state: started
image: itzg/minecraft-server:latest
restart_policy: unless-stopped
pull: yes
env:
EULA: "true"
FTB_MODPACK_ID: "100"
TYPE: "FTBA"
MEMORY: "8G"
ports:
- "25566:25565/tcp"
- "25566:25565/udp"
volumes:
- /data/minecraft/stoneblock:/data
tags: [ docker, minecraft, stoneblock ]