diff --git a/.gitignore b/.gitignore index 9088a4d..8065cae 100644 --- a/.gitignore +++ b/.gitignore @@ -74,3 +74,5 @@ wygiwyh/postgres_data/ watchyourlan/data/ puter/config/ puter/data/ +postgis/shared/ +postgis/data/ \ No newline at end of file diff --git a/postgis/compose.yml b/postgis/compose.yml new file mode 100644 index 0000000..81ad696 --- /dev/null +++ b/postgis/compose.yml @@ -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