This is a docker repository for a rcon client, based on factorio-rcon-py (see https://pypi.org/project/factorio-rcon-py/)
Available variables | Description |
---|---|
HOSTNAME |
The hostname of the factorio server |
PORT |
The RCON port of the factorio server |
Use the script start_rconclient.sh
:
./start_rconclient.sh [hostname [port]]
It is possible to start also directly the console using the command docker run
:
docker run -ti --rm \
[--env HOSTNAME=<hostname> \ ]
[--env PORT=<port> \ ]
--name rconclient denmor/factorio-rcon-client:latest
or
docker run -ti --rm \
--name rconclient denmor/factorio-rcon-client:latest \
python rcon_client.py [hostname [port]]
It is possible to promote directly a user as administrator using the command:
docker run -ti --rm \
--name rconclient denmor/factorio-rcon-client:latest \
python make_admin.py [hostname [port]]
The repository itself is under MIT licence. (see LICENSE)