Browse Source

Remove expose PostgreSQL port on production docker-compose file

Alex 3 years ago
parent
commit
2f2db74d73
1 changed files with 4 additions and 6 deletions
  1. 4 6
      docker/docker-compose.yml

+ 4 - 6
docker/docker-compose.yml

@@ -3,7 +3,7 @@ version: "3.8"
 services:
   immich-server:
     image: altran1502/immich-server:latest
-    entrypoint: [ "/bin/sh", "./start-server.sh" ]
+    entrypoint: ["/bin/sh", "./start-server.sh"]
     expose:
       - "3000"
     volumes:
@@ -21,7 +21,7 @@ services:
 
   immich-microservices:
     image: altran1502/immich-server:latest
-    entrypoint: [ "/bin/sh", "./start-microservices.sh" ]
+    entrypoint: ["/bin/sh", "./start-microservices.sh"]
     volumes:
       - ${UPLOAD_LOCATION}:/usr/src/app/upload
     env_file:
@@ -37,7 +37,7 @@ services:
 
   immich-machine-learning:
     image: altran1502/immich-machine-learning:latest
-    entrypoint: [ "/bin/sh", "./entrypoint.sh" ]
+    entrypoint: ["/bin/sh", "./entrypoint.sh"]
     expose:
       - "3001"
     volumes:
@@ -54,7 +54,7 @@ services:
 
   immich-web:
     image: altran1502/immich-web:latest
-    entrypoint: [ "/bin/sh", "./entrypoint.sh" ]
+    entrypoint: ["/bin/sh", "./entrypoint.sh"]
     env_file:
       - .env
     ports:
@@ -82,8 +82,6 @@ services:
       PG_DATA: /var/lib/postgresql/data
     volumes:
       - pgdata:/var/lib/postgresql/data
-    ports:
-      - 5432:5432
     networks:
       - immich-network
     restart: always