Add external monitoring network

This commit is contained in:
2023-08-10 16:29:52 +02:00
parent d53787dd96
commit c173962d19
8 changed files with 33 additions and 5 deletions

View File

@ -35,6 +35,7 @@ services:
- backend
- pantalaimon
- default
- metrics
db:
image: postgres:13
@ -42,8 +43,6 @@ services:
environment:
- POSTGRES_USER={{ miniflux.db.user }}
- POSTGRES_PASSWORD={{ miniflux.db.password }}
labels:
- "com.centurylinklabs.watchtower.scope=update"
volumes:
- database:/var/lib/postgresql/data
healthcheck:
@ -61,4 +60,6 @@ networks:
internal: true
pantalaimon:
external: true
metrics:
external: true
...