feat(service): add PG Back Web service (#5079)
This commit is contained in:
BIN
public/svgs/pgbackweb.png
Normal file
BIN
public/svgs/pgbackweb.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 23 KiB |
36
templates/compose/pgbackweb.yaml
Normal file
36
templates/compose/pgbackweb.yaml
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
# documentation: https://github.com/eduardolat/pgbackweb
|
||||||
|
# slogan: Effortless PostgreSQL backups with a user-friendly web interface!
|
||||||
|
# tags: backup, postgresql, web-interface
|
||||||
|
# logo: svgs/pgbackweb.svg
|
||||||
|
# port: 8085
|
||||||
|
services:
|
||||||
|
pgbackweb:
|
||||||
|
image: eduardolat/pgbackweb:latest
|
||||||
|
volumes:
|
||||||
|
- pgbackweb_backups:/backups
|
||||||
|
environment:
|
||||||
|
- SERVICE_FQDN_PGBACKWEB_8085
|
||||||
|
- PBW_ENCRYPTION_KEY=${SERVICE_PASSWORD_64_PGBACKWEB}
|
||||||
|
- PBW_POSTGRES_CONN_STRING=postgresql://${SERVICE_USER_POSTGRES}:${SERVICE_PASSWORD_POSTGRES}@postgres:5432/pgbackweb?sslmode=disable
|
||||||
|
- TZ=${TIME_ZONE:-UTC}
|
||||||
|
depends_on:
|
||||||
|
postgres:
|
||||||
|
condition: service_healthy
|
||||||
|
exclude_from_hc: true
|
||||||
|
postgres:
|
||||||
|
image: postgres:17
|
||||||
|
environment:
|
||||||
|
- POSTGRES_USER=${SERVICE_USER_POSTGRES}
|
||||||
|
- POSTGRES_DB=pgbackweb
|
||||||
|
- POSTGRES_PASSWORD=${SERVICE_PASSWORD_POSTGRES}
|
||||||
|
volumes:
|
||||||
|
- postgres_data:/var/lib/postgresql/data
|
||||||
|
healthcheck:
|
||||||
|
test: ["CMD-SHELL", "pg_isready -U ${SERVICE_USER_POSTGRES} -d pgbackweb"]
|
||||||
|
interval: 5s
|
||||||
|
timeout: 5s
|
||||||
|
retries: 5
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
postgres_data:
|
||||||
|
pgbackweb_backups:
|
Reference in New Issue
Block a user