From a11e611828d9a0ff8ccd3d78864aee19d16900d6 Mon Sep 17 00:00:00 2001 From: Dominik Date: Tue, 25 Mar 2025 11:41:48 +0100 Subject: [PATCH] added postgis --- .gitignore | 2 ++ postgis/compose.yml | 24 ++++++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 postgis/compose.yml 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