SNIR-MC/docker-compose.yml

17 lines
349 B
YAML
Raw Permalink Normal View History

2021-04-30 12:42:15 +00:00
version: '3.7'
services:
mc_srv:
restart: unless-stopped
2021-07-18 18:04:14 +00:00
build:
context: .
dockerfile: Dockerfile
2021-04-30 12:42:15 +00:00
ports:
2021-07-18 15:18:18 +00:00
- 25565:25565
- 8123:8123
2021-04-30 12:42:15 +00:00
volumes:
- ${PWD}:/mc-server
working_dir: "/mc-server"
2021-07-18 18:04:14 +00:00
entrypoint: ["sh", "/mc-server/scripts/init.sh"]
2021-04-30 12:42:15 +00:00