Files
Bragi-Local/compose.yaml
T
2026-07-14 17:15:45 +02:00

28 lines
512 B
YAML

services:
postgres:
image: postgres:16
container_name: postgres
networks:
- bragi-local
restart: unless-stopped
environment:
POSTGRES_USER: ${USER}
POSTGRES_PASSWORD: ${PASSWORD}
ports:
- "5432:5432"
volumes:
- /opt/91_DATABASE/postgres:/var/lib/postgresql/data
adminer:
image: adminer
restart: always
#ports:
#- 8080:8080
networks:
- bragi-local
container_name: adminer
networks:
bragi-local:
external: true