33 lines
676 B
YAML
33 lines
676 B
YAML
version: "3.9"
|
|
|
|
services:
|
|
postgres:
|
|
image: postgres:15
|
|
container_name: postgres_db
|
|
restart: unless-stopped
|
|
environment:
|
|
POSTGRES_USER: admin
|
|
POSTGRES_PASSWORD: admin123
|
|
POSTGRES_DB: mydb
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql/data
|
|
|
|
pgadmin:
|
|
image: dpage/pgadmin4:latest
|
|
container_name: pgadmin_ui
|
|
restart: unless-stopped
|
|
environment:
|
|
PGADMIN_DEFAULT_EMAIL: admin@admin.com
|
|
PGADMIN_DEFAULT_PASSWORD: admin123
|
|
ports:
|
|
- "8080:80"
|
|
depends_on:
|
|
- postgres
|
|
volumes:
|
|
- pgadmin_data:/var/lib/pgadmin
|
|
|
|
volumes:
|
|
postgres_data:
|
|
pgadmin_data: |