Added multistage, configs, and shrunk size

This commit is contained in:
FrozenFOXX
2020-05-25 20:42:56 -07:00
parent 40cc523b61
commit 2f6a9f8181
7 changed files with 538 additions and 29 deletions

View File

@@ -20,4 +20,18 @@ The following will run the latest Webtiles crawl server.
```
docker run -d --rm -p 8080:8080 --name=crawl_webtiles frozenfoxx/crawl:latest
```
```
## Persistent Deployment
All player RCs and webserver database files are located within `/data` within the container. Bind mount a host directory to this location to maintain persistence.
```
docker run \
-d \
--rm \
-v /data:/data \
-p 8080:8080 \
--name=crawl_webtiles \
frozenfoxx/crawl:latest
```