Not really a bug, but I couldn't log into my game (stuck on loading screen) and figured you need to add 8888:8888/tcp to the docker compose file
services: satisfactory-server: container_name: 'satisfactory-server' hostname: 'satisfactory-server' image: 'wolveix/satisfactory-server:latest' ports: - '7777:7777/udp' - '7777:7777/tcp' - '8888:8888/tcp' volumes: - './satisfactory-server:/config' environment: - MAXPLAYERS=4 - PGID=1000 - PUID=1000 - ROOTLESS=false - STEAMBETA=true restart: unless-stopped deploy: resources: limits: memory: 16G reservations: memory: 8G
Not sure if 7777 can be removed though, but at least for now that fixed my problem. Confirmed with someone else on satisfactory discord to fix the issue.
Not really a bug, but I couldn't log into my game (stuck on loading screen) and figured you need to add 8888:8888/tcp to the docker compose file
services: satisfactory-server: container_name: 'satisfactory-server' hostname: 'satisfactory-server' image: 'wolveix/satisfactory-server:latest' ports: - '7777:7777/udp' - '7777:7777/tcp' - '8888:8888/tcp' volumes: - './satisfactory-server:/config' environment: - MAXPLAYERS=4 - PGID=1000 - PUID=1000 - ROOTLESS=false - STEAMBETA=true restart: unless-stopped deploy: resources: limits: memory: 16G reservations: memory: 8GNot sure if 7777 can be removed though, but at least for now that fixed my problem. Confirmed with someone else on satisfactory discord to fix the issue.