13 lines
259 B
YAML
13 lines
259 B
YAML
version: '2'
|
|
services:
|
|
postgres:
|
|
container_name: postgres-9.6
|
|
restart: always
|
|
image: "postgres:9.6-alpine"
|
|
volumes:
|
|
- /opt/shared/postgres/data:/data
|
|
ports:
|
|
- "5432:5432"
|
|
environment:
|
|
- POSTGRES_PASSWORD=alphapass1
|