2018-09-03 21:45:17 +02:00
|
|
|
version: '3'
|
|
|
|
|
|
|
|
services:
|
|
|
|
postgres:
|
|
|
|
image: postgres:10.5
|
|
|
|
env_file: .env
|
|
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
|
|
- "./data/postgres:/var/lib/postgresql/data"
|
|
|
|
plume:
|
|
|
|
build: .
|
|
|
|
env_file: .env
|
|
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
2018-11-06 10:56:42 +01:00
|
|
|
- "./data/plume/static/media:/app/static/media"
|
2018-09-03 21:45:17 +02:00
|
|
|
- "./.env:/app/.env"
|
|
|
|
ports:
|
|
|
|
- "127.0.0.1:7878:7878"
|