mirror of
https://github.com/valitydev/newway.git
synced 2024-11-06 17:35:17 +00:00
13 lines
247 B
YAML
13 lines
247 B
YAML
version: '3'
|
|
services:
|
|
postgresql:
|
|
image: postgres:9.6
|
|
volumes:
|
|
- ./data:/var/lib/postgresql
|
|
ports:
|
|
- "5432:5432"
|
|
environment:
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: postgres
|
|
POSTGRES_DB: newway
|