mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2024-06-07 19:40:43 +00:00
eb0c30d134
For #1315
19 lines
363 B
YAML
19 lines
363 B
YAML
version: "3"
|
|
|
|
services:
|
|
web:
|
|
image: nginx
|
|
volumes:
|
|
- ./web:/usr/share/nginx/html
|
|
mc:
|
|
depends_on:
|
|
- web
|
|
image: ${IMAGE_TO_TEST:-itzg/minecraft-server}
|
|
environment:
|
|
EULA: "true"
|
|
SETUP_ONLY: "TRUE"
|
|
GENERIC_PACKS: http://web/configs.zip,/packs/testing.zip
|
|
volumes:
|
|
- ./packs:/packs
|
|
- ./data:/data
|