Sign inSign up

frozenfoxx/crawl

By frozenfoxx

Updated over 5 years ago

Docker container for Dungeon Crawl Stone Soup

Image
2

8.9K

frozenfoxx/crawl repository overview

crawl

Docker container for Dungeon Crawl Stone Soup

Source: https://github.com/frozenfoxx/docker-crawl

Build

git clone [email protected]: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

Tag summary

Content type

Image

Digest

Size

247 MB

Last updated

over 5 years ago

docker pull frozenfoxx/crawl