17 lines
350 B
YAML
17 lines
350 B
YAML
services:
|
|
db:
|
|
image: postgis/postgis:16-3.5
|
|
container_name: voyage-db
|
|
restart: unless-stopped
|
|
ports:
|
|
- "127.0.0.1:5432:5432"
|
|
environment:
|
|
POSTGRES_DB: database
|
|
POSTGRES_USER: adventure
|
|
POSTGRES_PASSWORD: changeme123
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql/data/
|
|
|
|
volumes:
|
|
postgres_data:
|