Add basic project setup files
This commit is contained in:
parent
4c21c9bbb2
commit
433f1faeff
14 changed files with 379 additions and 1 deletions
16
docker-compose.yml
Normal file
16
docker-compose.yml
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
version: '3'
|
||||
|
||||
services:
|
||||
db:
|
||||
image: postgis/postgis:14-3.3-alpine
|
||||
volumes:
|
||||
- ./postgres_data:/var/lib/postgresql/data/
|
||||
ports:
|
||||
- "127.0.0.1:5432:5432"
|
||||
environment:
|
||||
POSTGRES_USER: govplan
|
||||
POSTGRES_DB: govplan
|
||||
POSTGRES_PASSWORD: govplan
|
||||
|
||||
volumes:
|
||||
postgres_data: {}
|
||||
Loading…
Add table
Add a link
Reference in a new issue