mirror of
https://github.com/dominikhoebert/docker-projects.git
synced 2025-06-28 01:07:07 +00:00
14 lines
312 B
YAML
14 lines
312 B
YAML
|
name: postgres15
|
||
|
|
||
|
services:
|
||
|
psql15:
|
||
|
container_name: postgres15
|
||
|
image: postgres:15
|
||
|
environment:
|
||
|
POSTGRES_USER: postgres
|
||
|
POSTGRES_PASSWORD: example
|
||
|
volumes:
|
||
|
- ./data:/var/lib/postgresql/data
|
||
|
- ./dev/docker_psql_init:/docker-entrypoint-initdb.d
|
||
|
ports:
|
||
|
- 5432:5432
|