added postgis

This commit is contained in:
Dominik 2025-03-25 11:41:48 +01:00
parent ea90903a85
commit a11e611828
2 changed files with 26 additions and 0 deletions

2
.gitignore vendored
View File

@ -74,3 +74,5 @@ wygiwyh/postgres_data/
watchyourlan/data/
puter/config/
puter/data/
postgis/shared/
postgis/data/

24
postgis/compose.yml Normal file
View File

@ -0,0 +1,24 @@
#
#
name: postgis
services:
postgis:
image: postgis/postgis:17-3.5-alpine
container_name: postgis
volumes:
- ./data/:/var/lib/postgresql/data
- ./shared/:/var/shared
environment:
POSTGRES_USER: test
POSTGRES_PASSWORD: changeme
networks:
- proxy
ports:
- 15432:5432
networks:
proxy:
external: true