From d4b364716fd19f6781592108decad4e1b63703d2 Mon Sep 17 00:00:00 2001 From: Nicholas Orlowsky Date: Sat, 5 Jul 2025 19:22:46 -0400 Subject: [PATCH] init commit --- docker-compose.yml | 15 +++++++++++++++ septa_json2psql | 1 + 2 files changed, 16 insertions(+) create mode 100644 docker-compose.yml create mode 160000 septa_json2psql diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..2998ad2 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,15 @@ +services: + pgsql: + image: postgres:14.1-alpine + restart: always + environment: + - POSTGRES_USER=adminis + - POSTGRES_PASSWORD=password + ports: + - '5432:5432' + volumes: + - db:/var/lib/postgresql/data +volumes: + db: + driver: local + minio_data: diff --git a/septa_json2psql b/septa_json2psql new file mode 160000 index 0000000..ff2c1ce --- /dev/null +++ b/septa_json2psql @@ -0,0 +1 @@ +Subproject commit ff2c1ce762cf0b6b1c4b0a45d5923e4d23a36bd3