mirror of
https://github.com/marcel-dempers/docker-development-youtube-series.git
synced 2025-06-06 17:01:30 +00:00
16 lines
300 B
YAML
16 lines
300 B
YAML
version: '3.1'
|
|
services:
|
|
db:
|
|
image: postgres:15.0
|
|
restart: always
|
|
environment:
|
|
POSTGRES_PASSWORD: admin123
|
|
ports:
|
|
- 5000:5432
|
|
volumes:
|
|
- ./pgdata:/var/lib/postgresql/data
|
|
adminer:
|
|
image: adminer
|
|
restart: always
|
|
ports:
|
|
- 8080:8080 |