2c6a7e1418
* 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.
16 lines
348 B
YAML
16 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"
|