This repository has been archived on 2021-12-24. You can view files and clone it, but cannot push or open issues/pull-requests.
self-hosting/minecraft/forge/docker-compose.yml

29 lines
623 B
YAML
Raw Normal View History

version: '2.0'
2020-12-30 14:02:22 +01:00
services:
2021-01-26 13:45:30 +01:00
app:
2020-12-30 14:02:22 +01:00
build:
context: .
args:
- 'BASE_IMAGE'
2021-01-26 13:45:30 +01:00
- 'FORGE_VERSION'
- 'MC_VERSION'
2021-01-26 13:45:30 +01:00
image: 'chewingbever/mc-forge:${MC_VERSION}-${FORGE_VERSION}'
2020-12-30 14:02:22 +01:00
2021-01-26 13:45:30 +01:00
restart: 'always'
2020-12-30 14:02:22 +01:00
stdin_open: true
tty: true
environment:
- XMS
- XMX
2020-12-30 14:02:22 +01:00
ports:
- '$PORT:25565'
2020-12-30 14:02:22 +01:00
volumes:
2021-01-26 13:45:30 +01:00
- '$CONFIG_DIR:/app/config'
- '$WORLDS_DIR:/app/worlds'
# These volumes only get created if you use them in the env file
volumes:
config:
worlds: