-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
26 lines (24 loc) · 913 Bytes
/
docker-compose.yml
File metadata and controls
26 lines (24 loc) · 913 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
version: '2'
volumes:
worlds:
services:
minecraft:
image: magikcraft/scriptcraft:1.15.2
container_name: minecraft
ports:
- '25565:25565'
- '8086:8086'
environment:
- MINECRAFT_EULA_ACCEPTED=true
volumes:
- ./cache:/_server_/cache
- worlds:/_server_/worlds
# To load SMA plugins
# Create a directory called scriptcraft-plugins and npm install any SMA plugins there
# with npm install --prefix ./scriptcraft-plugins <package-name>
# And uncomment the following line
# - ./scriptcraft-plugins:/_server_/scriptcraft-plugins
# To add BPMN processes and handlers
# Create a directory called bpmn and put them in there
# And uncomment the following line:
# - ./bpmn:/_server_/plugins/CamundaPlugin