forked from PluralFlux/PluralFlux
36 lines
694 B
YAML
36 lines
694 B
YAML
services:
|
|
main:
|
|
image: engineering.sanya.gay/pluralflux/pluralflux-dev
|
|
container_name: pluralflux
|
|
restart: unless-stopped
|
|
networks:
|
|
- pluralflux-net
|
|
env_file: "secrets.env"
|
|
postgres:
|
|
image: postgres:latest
|
|
container_name: pluralflux-postgres
|
|
env_file: "secrets.env"
|
|
volumes:
|
|
- pgdata:/var/lib/postgresql
|
|
ports:
|
|
- "5432:5432"
|
|
networks:
|
|
- pluralflux-net
|
|
pgadmin:
|
|
image: dpage/pgadmin4:latest
|
|
container_name: pluralflux-pgadmin
|
|
ports:
|
|
- "5050:80"
|
|
env_file: "secrets.env"
|
|
depends_on:
|
|
- postgres
|
|
networks:
|
|
- pluralflux-net
|
|
|
|
networks:
|
|
pluralflux-net:
|
|
|
|
volumes:
|
|
pgdata:
|
|
secrets:
|