MemeTech commited on
Commit
412e008
·
verified ·
1 Parent(s): 76a2c9e

Create docker-compose.yml

Browse files

https://chatgpt.com/share/672ae5c4-3a88-8009-a0c8-eef754873e62 why isn't this working?

Files changed (1) hide show
  1. docker-compose.yml +22 -0
docker-compose.yml ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ version: "3"
2
+ services:
3
+ minecraft:
4
+ build: .
5
+ ports:
6
+ - "7860:7860" # Mapping container port 7860 to host port 7860
7
+ environment:
8
+ - EULA=TRUE
9
+ - VERSION=LATEST
10
+ - MEMORY=8G
11
+ - DIFFICULTY=peaceful
12
+ - GAMEMODE=creative
13
+ - ONLINE_MODE=TRUE
14
+ - MOTD="A server hosted on HF Spaces"
15
+ - MAX_PLAYERS=40
16
+ - SPAWN_PROTECTION=10
17
+ volumes:
18
+ - minecraft_data:/data
19
+ restart: unless-stopped
20
+
21
+ volumes:
22
+ minecraft_data: