2025-06-08 23:02:12 +02:00
2020-09-02 15:53:54 -07:00
2025-06-08 23:02:12 +02:00
2021-03-11 12:28:19 -08:00
2020-03-11 23:56:37 -07:00
2025-05-25 10:46:15 +02:00
2020-09-01 21:42:38 -07:00
2025-06-08 23:02:12 +02:00
2020-03-11 23:57:12 -07:00
2021-03-11 12:39:15 -08:00

docker-crawl

Build Status

Docker container for Dungeon Crawl Stone Soup (DCSS).

Docker Hub: https://hub.docker.com/r/frozenfoxx/crawl

How to Build

git clone git@github.com:frozenfoxx/docker-crawl.git
cd docker-crawl
docker build .

To build a Webtiles server build explicitly:

docker build -f Dockerfile.webtiles .

To build a Tiles server build explicitly:

docker build -f Dockerfile.tiles .

How to Use this Image

Quickstart

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
Description
Docker container for Dungeon Crawl Stone Soup
Readme Apache-2.0 393 KiB
Languages
Python 71.2%
Dockerfile 19.4%
Shell 9.4%