2018-01-31 23:35:54 +00:00
---
layout: page
title: Docker
---
2020-08-22 19:26:24 +00:00
**You'll need Docker installed before going any further. How to do so are out of scope of these docs, but you can find full instructions
2018-01-31 23:35:54 +00:00
for every operating system on the [Docker website ](https://docs.docker.com/engine/installation/ ).**
## Quick Start
2020-08-22 19:26:24 +00:00
Download and run the ENiGMA½ BBS image:
2018-01-31 23:35:54 +00:00
docker run -d \
-p 8888:8888 \
2018-12-29 22:00:06 +00:00
davestephens/enigma-bbs:latest
2018-01-31 23:35:54 +00:00
2020-11-21 19:19:18 +00:00
:warning: This is a **very basic** example! As no config has been supplied the container will use a basic one so that it starts successfully. Note that as no persistence directory has been supplied, once the container stops any changes made will be lost!
2018-01-31 23:35:54 +00:00
2020-11-21 19:19:18 +00:00
:bulb: [Volumes ](https://docs.docker.com/storage/volumes/ ) may be used for things such as your configuration and database path.
2018-01-31 23:35:54 +00:00
2020-08-22 19:26:24 +00:00
## Customized Docker Setup
2018-12-29 22:00:06 +00:00
TBC using Docker Compose
2020-08-22 19:26:24 +00:00
:pencil: This area is looking for contributors!