diff --git a/immich/env.example b/immich/env.example
index 57995eb..77721ea 100644
--- a/immich/env.example
+++ b/immich/env.example
@@ -11,7 +11,6 @@ UPLOAD_LOCATION=/opt/immich/library
 # The Immich version to use. You can pin this to a specific version like "v1.71.0"
 IMMICH_VERSION=release
 
-DB_HOSTNAME=rick_psql
 DB_USERNAME=psql
 DB_PASSWORD=postgres
 DB_DATABASE_NAME=immich
diff --git a/psql/compose.yml b/psql/compose.yml
index 4f9319f..01bc00e 100644
--- a/psql/compose.yml
+++ b/psql/compose.yml
@@ -1,6 +1,6 @@
 services:
   rick_psql:
-    image: postgres:16
+    image: postgres:12.3
     restart: always
     env_file:
       - .env
diff --git a/tandoor/compose.yml b/tandoor/compose.yml
index f2a01f8..24e85e3 100644
--- a/tandoor/compose.yml
+++ b/tandoor/compose.yml
@@ -10,8 +10,6 @@ services:
     networks:
       - rick_db
       - tandoor
-    ports:
-      - 30025:8080
 
 networks:
   rick_db:
diff --git a/tandoor/env.example b/tandoor/env.example
index b2b2b31..921b817 100644
--- a/tandoor/env.example
+++ b/tandoor/env.example
@@ -2,7 +2,7 @@
 SECRET_KEY=
 ALLOWED_HOSTS=
 DB_ENGINE=django.db.backends.postgresql
-POSTGRES_HOST=rick_psql
+POSTGRES_HOST=rick_db
 POSTGRES_DB=tandoor
 POSTGRES_PORT=5432
 POSTGRES_USER=psql