1
0
mirror of https://github.com/civsocit/olgram.git synced 2025-12-16 06:46:17 +00:00
This commit is contained in:
mihalin
2021-06-11 21:56:03 +03:00
commit 3a022ec588
14 changed files with 247 additions and 0 deletions

15
docker-compose.yaml Normal file
View File

@@ -0,0 +1,15 @@
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: