mirror of
https://github.com/dragonlock2/matthewtran.com.git
synced 2025-10-11 20:17:54 +00:00
27 lines
591 B
YAML
27 lines
591 B
YAML
services:
|
|
monerod:
|
|
restart: always
|
|
build: monerod/.
|
|
entrypoint: ["/bin/sh", "/root/entry.sh"]
|
|
ports:
|
|
- "18080:18080"
|
|
- "18083:18083"
|
|
volumes:
|
|
- ./monerod/.bitmonero:/root/.bitmonero
|
|
minecraft:
|
|
restart: always
|
|
build: minecraft/.
|
|
entrypoint: ["/bin/sh", "/root/entry.sh"]
|
|
ports:
|
|
- "25565:25565"
|
|
volumes:
|
|
- ./minecraft/world:/root/world
|
|
terraria:
|
|
restart: always
|
|
build: terraria/.
|
|
entrypoint: ["/bin/sh", "/root/entry.sh"]
|
|
ports:
|
|
- "7777:7777"
|
|
volumes:
|
|
- ./terraria/worlds:/root/worlds
|