Files
PluralFlux/compose.yaml
Laika Bozhko 72b70f5175 Update dockerfile for standalone deployment (#23)
* Add files via upload

* Update Docker image for pluralflux service

* removing unnecessary network and container name definitions

---------

Co-authored-by: Aster Fialla <asterfialla@gmail.com>
2026-02-28 14:37:59 -05:00

28 lines
655 B
YAML

services:
main:
image: engineering.sanya.gay/pluralflux/pluralflux
container_name: pluralflux
restart: unless-stopped
env_file: "variables.env"
postgres:
image: postgres:latest
env_file: "variables.env"
volumes:
- pgdata:/var/lib/postgresql
- ./pgBackup:/mnt/pgBackup
pgadmin:
image: dpage/pgadmin4:latest
ports:
- "5050:80"
env_file: "variables.env"
depends_on:
- postgres
volumes:
- pgadmindata:/var/lib/pgadmin
#- ./pgBackup:/mnt/host
# uncomment the above line if you plan to restore / backup dump files from PGAdmin UI
volumes:
pgdata:
pgadmindata: