14 lines
286 B
Markdown
14 lines
286 B
Markdown
Example docker-compose.yml file
|
|
```
|
|
services:
|
|
backup:
|
|
image: registry.cheriches.eu/pgsql-backup:16-1787155634
|
|
restart: always
|
|
volumes:
|
|
- ./backup:/backup
|
|
environment:
|
|
PGSQL_USER: postgres
|
|
PGSQL_PASS: postgrespassword
|
|
PGSQL_HOST: postgresdb
|
|
```
|