mirror of
https://github.com/pieartsy/PluralFlux.git
synced 2026-04-16 17:45:28 +10:00
* 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>
28 lines
655 B
YAML
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:
|