mcdockerimage/docker-compose.yml

29 lines
574 B
YAML
Raw Permalink Normal View History

2020-09-28 23:32:43 +00:00
version: '3.7'
services:
2020-10-13 08:10:19 +00:00
minecraft:
2020-09-28 23:32:43 +00:00
image: minecraft
2020-10-13 08:10:19 +00:00
container_name: minecraft
2020-09-28 23:32:43 +00:00
restart: unless-stopped
environment:
2020-10-13 08:10:19 +00:00
MAX_MEM: 1G
2020-09-28 23:32:43 +00:00
ports:
- 25565:25565
volumes:
- /home/jimmy/misc/paper/:/server
stdin_open: true
2020-10-13 08:10:19 +00:00
tty: true
minecraft2:
image: minecraft
container_name: minecraft2
restart: unless-stopped
environment:
MAX_MEM: 1G
ports:
- 25566:25565
volumes:
- /home/jimmy/misc/paper2/:/server
stdin_open: true
2020-09-28 23:32:43 +00:00
tty: true