ekiken

Members
  • Posts

    1
  • Joined

  • Last visited

Everything posted by ekiken

  1. Hi, I am trying to set up Rust dedicated server and used the following to run the docker: docker run --name RUST --log-opt max-size=10m -d \ -p 28015:28016/udp -p 25576:25576/udp \ --env 'GAME_ID=258550' \ --env 'SERVER_NAME=[SG/SEA] Gamers Paradise Rust Server' \ --env 'SERVER_DISCRIPTION=[SG/SEA] Gamers Paradise Rust Server' \ --env 'GAME_PARAMS=+server.maxplayers 120 +rcon.port 25576 +rcon.password xxxxxxx' \ --env 'GAME_PORT=28015' \ --env 'UID=1001' \ --env 'GID=1001' \ --env 'OXIDE_MOD=true' \ --volume /home/rust/steamcmd:/serverdata/steamcmd \ --volume /home/rust/steamcmd/rust:/serverdata/serverfiles \ ich777/steamcmd:rust However, when I look at the docker logs, it got killed at certain stage: [7.6s] Harbors (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line: 35) [5.6s] Fishing Villages (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line: 35) [1.8s] Desert Military (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line: 35) [1.5s] Arctic Bases (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line: 35) /opt/scripts/start-server.sh: line 107: 83 Killed ${SERVER_DIR}/RustDedicated -batchmode +server.port ${GAME_PORT} +server.hostname "${SERVER_NAME}" +server.description "${SERVER_DISCRIPTION}" ${GAME_PARAMS} Does anyone know what did I do wrong? Thanks.