Files
PluralFlux/compose.yaml
pieartsy c2a88804ad docs: Update readme and other tweaks (#37)
* edited build-main.yml to have workflow_dispatch

* re-added pgadmindata to docker compose

* removed disclaimer about being run on my personal laptop as that's no longer true

---------

Co-authored-by: Aster Fialla <asterfialla@gmail.com>
2026-03-11 21:27:41 -04:00

26 lines
562 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
ports:
- "5432:5432"
pgadmin:
image: dpage/pgadmin4:latest
ports:
- "5050:80"
env_file: "variables.env"
depends_on:
- postgres
volumes:
- pgadmindata:/var/lib/pgadmin
volumes:
pgdata:
pgadmindata: