mirror of
https://github.com/factoriotools/factorio-docker.git
synced 2025-07-04 07:58:13 +02:00
Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
2c88f5e982 | |||
26cec3ae93 | |||
7897de5080 | |||
b474afc1b7 |
@ -51,6 +51,8 @@ exec su-exec factorio /opt/factorio/bin/x64/factorio \
|
|||||||
--rcon-port $RCON_PORT \
|
--rcon-port $RCON_PORT \
|
||||||
--server-whitelist $CONFIG/server-whitelist.json \
|
--server-whitelist $CONFIG/server-whitelist.json \
|
||||||
--use-server-whitelist \
|
--use-server-whitelist \
|
||||||
|
--server-adminlist $CONFIG/server-adminlist.json \
|
||||||
|
--server-banlist $CONFIG/server-banlist.json \
|
||||||
--rcon-password "$(cat $CONFIG/rconpw)" \
|
--rcon-password "$(cat $CONFIG/rconpw)" \
|
||||||
--server-id /factorio/config/server-id.json \
|
--server-id /factorio/config/server-id.json \
|
||||||
$@
|
$@
|
||||||
|
28
README.md
28
README.md
@ -8,9 +8,9 @@
|
|||||||
|
|
||||||
*Tag descriptions*
|
*Tag descriptions*
|
||||||
|
|
||||||
* `latest` - the most up-to-date version (may be experimental).
|
* `latest` - most up-to-date version (may be experimental).
|
||||||
* `stable` - the version declared stable on [factorio.com](https://www.factorio.com).
|
* `stable` - version declared stable on [factorio.com](https://www.factorio.com).
|
||||||
* `0.x` - highest version in a branch: may be experimental.
|
* `0.x` - latest version in a branch.
|
||||||
* `0.x.y` - a specific version.
|
* `0.x.y` - a specific version.
|
||||||
* `0.x-dev` - whatever is in master for that version.
|
* `0.x-dev` - whatever is in master for that version.
|
||||||
|
|
||||||
@ -164,6 +164,24 @@ Create file `config/server-whitelist.json` and add the whitelisted users.
|
|||||||
"friend"
|
"friend"
|
||||||
]
|
]
|
||||||
|
|
||||||
|
## Banlisting (0.17.1+)
|
||||||
|
|
||||||
|
Create file `config/server-banlist.json` and add the banlisted users.
|
||||||
|
|
||||||
|
[
|
||||||
|
"bad_person",
|
||||||
|
"other_bad_person"
|
||||||
|
]
|
||||||
|
|
||||||
|
## Adminlisting (0.17.1+)
|
||||||
|
|
||||||
|
Create file `config/server-adminlist.json` and add the adminlisted users.
|
||||||
|
|
||||||
|
[
|
||||||
|
"you",
|
||||||
|
"friend"
|
||||||
|
]
|
||||||
|
|
||||||
# Container Details
|
# Container Details
|
||||||
|
|
||||||
The philosophy is to [keep it simple](http://wiki.c2.com/?KeepItSimple).
|
The philosophy is to [keep it simple](http://wiki.c2.com/?KeepItSimple).
|
||||||
@ -182,7 +200,9 @@ To keep things simple, the container uses a single volume mounted at `/factorio`
|
|||||||
| |-- map-gen-settings.json
|
| |-- map-gen-settings.json
|
||||||
| |-- rconpw
|
| |-- rconpw
|
||||||
| |-- server-settings.json
|
| |-- server-settings.json
|
||||||
| `-- server-whitelist.json
|
| |-- server-whitelist.json
|
||||||
|
| |-- server-banlist.json
|
||||||
|
| `-- server-adminlist.json
|
||||||
|-- mods
|
|-- mods
|
||||||
| `-- fancymod.zip
|
| `-- fancymod.zip
|
||||||
`-- saves
|
`-- saves
|
||||||
|
Reference in New Issue
Block a user