mirror of
https://github.com/civsocit/olgram.git
synced 2023-07-22 01:29:12 +03:00
16 lines
284 B
YAML
16 lines
284 B
YAML
version: '3'
|
|
services:
|
|
postgres:
|
|
image: kartoza/postgis
|
|
environment:
|
|
- POSTGRES_USER=test_user
|
|
- POSTGRES_PASSWORD=test_passwd
|
|
- POSTGRES_DB=olgram
|
|
ports:
|
|
- '5431:5432'
|
|
volumes:
|
|
- database:/var/lib/postgresql/data
|
|
|
|
volumes:
|
|
database:
|