Skip to content

Docker container for Dungeon Crawl Stone Soup

License

Notifications You must be signed in to change notification settings

robertmeta/docker-crawl

 
 

Repository files navigation

docker-crawl

Build Status

Docker container for Dungeon Crawl Stone Soup (DCSS).

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

How to Build

git clone [email protected]:robertmeta/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 robertmeta/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 \
  robertmeta/crawl:latest

About

Docker container for Dungeon Crawl Stone Soup

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 71.4%
  • Dockerfile 19.2%
  • Shell 9.4%