Add postgres test container
This commit is contained in:
parent
32a3218ac9
commit
ea1f2be4bc
|
@ -48,6 +48,18 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- mariadbdata:/var/lib/mysql
|
- mariadbdata:/var/lib/mysql
|
||||||
|
|
||||||
|
postgres:
|
||||||
|
image: postgres
|
||||||
|
labels:
|
||||||
|
restic-volume-backup.postgres: true
|
||||||
|
environment:
|
||||||
|
- POSTGRES_USER=pguser
|
||||||
|
- POSTGRES_PASSWORD=pgpassword
|
||||||
|
- POSTGRES_DB=test
|
||||||
|
volumes:
|
||||||
|
- pgdata:/var/lib/postgresql/data
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
mysqldata:
|
mysqldata:
|
||||||
mariadbdata:
|
mariadbdata:
|
||||||
|
pgdata:
|
||||||
|
|
Loading…
Reference in New Issue