2nd edition of my mc server for my friends and i
0

Configure Feed

Select the types of activity you want to include in your feed.

comfymc2 / docker-compose.yml
521 B 20 lines
1services: 2 mc: 3 image: itzg/minecraft-server 4 container_name: comfymc_server 5 ports: 6 - "25565:25565" 7 environment: 8 EULA: "TRUE" 9 TYPE: "NEOFORGE" 10 VERSION: "26.1.2" 11 NEOFORGE_VERSION: "26.1.2.76" 12 PACKWIZ_URL: "https://comfymc.wisp.place/pack.toml" 13 INITIAL_ENABLED_PACKS: "vanilla,minecart_improvements" 14 MEMORY: "4G" 15 JVM_OPTS: "-Dio.netty.transport.noKQueue=true" 16 UID: 1001 17 GID: 1001 18 volumes: 19 - ./data:/data 20 restart: unless-stopped