This repository has been archived on 2019-10-12. You can view files and clone it, but cannot push or open issues or pull requests.
ldap_account_manager/docker-compose.prod.yml
2019-04-13 00:23:46 +02:00

28 lines
425 B
YAML

version: "3"
networks:
pg_db:
internal: true
services:
lama:
image: lama:0.1
build:
context: .
dockerfile: Dockerfile
networks:
- default
- pg_db
env_file:
- production.env
ports:
- 8888:80
dblama:
image: postgres:11.2-alpine
networks:
- pg_db
volumes:
- ./data/pgdata/:/var/lib/postgresql/data/
env_file:
- production.env