-
I ran the following Docker Compose to start FORGE Server. version: '3.7'
services:
# https://github.com/itzg/docker-minecraft-server
mc:
image: itzg/minecraft-server:java8-multiarch
ports:
- 25565:25565
environment:
VERSION: 1.12.2
EULA: "TRUE"
TYPE: "FORGE"
MEMORY: "4G"
OVERRIDE_SERVER_PROPERTIES: "TRUE"
SERVER_NAME: "mc-galacticraft"
MODE: "survival"
DIFFICULTY: "normal"
MAX_PLAYERS: 5
OVERRIDE_OPS: "TRUE"
OPS: ""
ENABLE_WHITELIST: "TRUE"
ENFORCE_WHITELIST: "TRUE"
FORCE_REDOWNLOAD: "TRUE"
GUI: "FALSE"
tty: true
stdin_open: true
volumes:
- /share/Public/minecraft/servers/galacticraft/volume:/data
networks:
- internal
# https://github.com/rapiz1/rathole
port_forwarding:
depends_on:
- mc
image: rapiz1/rathole
restart: unless-stopped
command: ["--client", "/app/client.toml"]
tty: true
volumes:
- /share/Public/minecraft/servers/galacticraft/client.toml:/app/client.toml
networks:
- internal
networks:
internal: However, FORGE Server does not start with the following error.
Do I need to pre-download |
Beta Was this translation helpful? Give feedback.
Answered by
itzg
Dec 18, 2022
Replies: 1 comment 1 reply
-
Your forge file went missing after a previous run. Set |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
st-little
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Your forge file went missing after a previous run. Set
FORGE_FORCE_REINSTALL
to "true".