25 lines
476 B
YAML
25 lines
476 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
|
|
|
|
networks:
|
|
bragi-local:
|
|
external: true |