microblog.pub/docker-compose-dev.yml
Niklas Poslovski 2c6a7e1418 Fix installation instructions and config (#45)
* Update installation instructions

I tried to install a local copy of this project and experienced some problems with the installation instructions.
I updated the instructions with the commands I needed to run to make it work.

* Fix poussetaches docker config

Port 7991 needs to be opened for the poussetaches container to work correctly.
2019-04-17 20:44:26 +02:00

17 lines
348 B
YAML

version: '3'
services:
mongo:
image: "mongo:latest"
volumes:
- "./data:/data/db"
ports:
- "27017:27017"
poussetaches:
image: "poussetaches:latest"
volumes:
- "${DATA_DIR}/poussetaches:/app/poussetaches_data"
environment:
- POUSSETACHES_AUTH_KEY=${POUSSETACHES_AUTH_KEY}
ports:
- "7991:7991"