23 lines
420 B
YAML
23 lines
420 B
YAML
services:
|
|
postgres:
|
|
image: library/postgres
|
|
container_name: postgres
|
|
networks:
|
|
- proxy
|
|
volumes:
|
|
- keycloak-postgres:/var/lib/postgresql
|
|
environment:
|
|
POSTGRES_USER: bapasqui
|
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
|
PGPORT: 3212
|
|
POSTGRES_DB: keycloak
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
keycloak-postgres:
|
|
|
|
|
|
networks:
|
|
proxy:
|
|
name: proxy
|
|
external: true |