2026-02-12 21:40:07 -05:00
|
|
|
services:
|
2026-02-16 11:08:41 -05:00
|
|
|
main:
|
2026-03-01 06:37:59 +11:00
|
|
|
image: engineering.sanya.gay/pluralflux/pluralflux
|
2026-02-16 11:08:41 -05:00
|
|
|
container_name: pluralflux
|
2026-02-19 21:45:10 -05:00
|
|
|
restart: unless-stopped
|
2026-03-01 06:37:59 +11:00
|
|
|
env_file: "variables.env"
|
2026-02-12 20:05:31 -05:00
|
|
|
postgres:
|
|
|
|
|
image: postgres:latest
|
2026-03-01 06:37:59 +11:00
|
|
|
env_file: "variables.env"
|
2026-02-12 20:05:31 -05:00
|
|
|
volumes:
|
2026-02-12 20:32:45 -05:00
|
|
|
- pgdata:/var/lib/postgresql
|
2026-03-01 06:37:59 +11:00
|
|
|
- ./pgBackup:/mnt/pgBackup
|
2026-02-19 21:45:10 -05:00
|
|
|
pgadmin:
|
|
|
|
|
image: dpage/pgadmin4:latest
|
|
|
|
|
ports:
|
|
|
|
|
- "5050:80"
|
2026-03-01 06:37:59 +11:00
|
|
|
env_file: "variables.env"
|
2026-02-19 21:45:10 -05:00
|
|
|
depends_on:
|
|
|
|
|
- postgres
|
2026-03-01 06:37:59 +11:00
|
|
|
volumes:
|
|
|
|
|
- pgadmindata:/var/lib/pgadmin
|
|
|
|
|
#- ./pgBackup:/mnt/host
|
|
|
|
|
# uncomment the above line if you plan to restore / backup dump files from PGAdmin UI
|
2026-02-12 20:05:31 -05:00
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
|
pgdata:
|
2026-03-01 06:37:59 +11:00
|
|
|
pgadmindata:
|