mirror of
https://github.com/pieartsy/PluralFlux.git
synced 2026-04-14 12:05:28 +10:00
* 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>
26 lines
562 B
YAML
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: |