14 lines
238 B
YAML
14 lines
238 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
postgres:
|
|
image: postgres:latest
|
|
container_name: haikydb
|
|
restart: always
|
|
env_file:
|
|
- .env
|
|
ports:
|
|
- "15432:5432"
|
|
volumes:
|
|
- ${PWD}/haikydb-data:/var/lib/postgresql/data
|