add port to compose and readme
This commit is contained in:
@@ -1,8 +1,11 @@
|
|||||||
A Dockerfile to use the Archipelago through Docker.<br>
|
A Dockerfile to use the Archipelago through Docker.<br>
|
||||||
Note: The save file needs to be created somewhere else and then put into the mounted volume before starting the server.
|
Note: The save file needs to be created somewhere else and then put into the mounted volume before starting the server.
|
||||||
|
|
||||||
|
### Port
|
||||||
|
- The server port is set to `38281` and needs to be exposed for the server to be reachable
|
||||||
|
|
||||||
### Volumes:
|
### Volumes:
|
||||||
- `/home/archipelago/saves` -> Directory to put the save files into
|
- `/home/archipelago/saves` -> Directory to put the save files into
|
||||||
|
|
||||||
### Env Vars:
|
### Env Vars:
|
||||||
- `SERVERPASSWORD` -> The password needed to connect to the server
|
- `SERVERPASSWORD` -> The password needed to connect to the server
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
services:
|
services:
|
||||||
server:
|
server:
|
||||||
build: ./
|
build: ./
|
||||||
|
ports:
|
||||||
|
- 38281:38281
|
||||||
volumes:
|
volumes:
|
||||||
- /srv/archipelago/saves:/home/archipelago/saves
|
- /srv/archipelago/saves:/home/archipelago/saves
|
||||||
environment:
|
environment:
|
||||||
|
|||||||
Reference in New Issue
Block a user