22 lines
373 B
YAML
22 lines
373 B
YAML
postgres:
|
|
env_file:
|
|
- ./environment
|
|
image: postgres
|
|
volumes:
|
|
- /var/lib/postgresql/data
|
|
|
|
redis:
|
|
image: redis
|
|
|
|
mayan-edms:
|
|
env_file:
|
|
- ./environment
|
|
image: mayanedms/monolithic
|
|
links:
|
|
- postgres
|
|
- redis
|
|
ports:
|
|
- "80:80"
|
|
volumes:
|
|
- /usr/local/lib/python2.7/dist-packages/mayan/media
|