https://github.com/zcube/factorio-server-manager-docker
https://github.com/zcube/factorio-server-manager-docker
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/zcube/factorio-server-manager-docker
- Owner: ZCube
- License: mit
- Created: 2023-01-14T10:38:14.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-14T14:05:31.000Z (over 3 years ago)
- Last Synced: 2025-03-17T03:27:44.185Z (about 1 year ago)
- Language: Go
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# factorio-server-manager-docker
* https://github.com/OpenFactorioServerManager/factorio-server-manager builder
# Usage
docker-compose.yaml
```
version: '3.5'
services:
factorio:
image: ghcr.io/zcube/factorio-docker-ssh:1.1.74
restart: unless-stopped
environment:
- TZ=UTC
ports:
- "34197:34197/udp"
- "27015:27015/tcp"
volumes:
- /etc/localtime:/etc/localtime:ro
- factorio:/factorio
fsm:
image: ghcr.io/zcube/factorio-server-manager-docker:latest
restart: unless-stopped
environment:
- TZ=UTC
- FSM_DIR=/factorio
- FSM_FACTORIO_IP=factorio
- FSM_RCON_PORT=27015
- SSH_HOST=factorio
- SSH_PORT=2222
ports:
- "80:80/tcp"
volumes:
- /etc/localtime:/etc/localtime:ro
- factorio:/factorio
volumes:
factorio:
```