1
0
mirror of https://github.com/immich-app/immich.git synced 2024-12-22 01:47:08 +02:00

chore(server): disable TypeSense logging (#1925)

This commit is contained in:
Alex 2023-03-02 23:33:07 -06:00 committed by GitHub
parent 0aaeab124d
commit 8f11529a75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 3 deletions

View File

@ -97,6 +97,8 @@ services:
environment: environment:
- TYPESENSE_API_KEY=${TYPESENSE_API_KEY} - TYPESENSE_API_KEY=${TYPESENSE_API_KEY}
- TYPESENSE_DATA_DIR=/data - TYPESENSE_DATA_DIR=/data
logging:
driver: none
volumes: volumes:
- tsdata:/data - tsdata:/data

View File

@ -4,7 +4,7 @@ services:
immich-server: immich-server:
container_name: immich_server container_name: immich_server
image: altran1502/immich-server:release image: altran1502/immich-server:release
entrypoint: ["/bin/sh", "./start-server.sh"] entrypoint: [ "/bin/sh", "./start-server.sh" ]
volumes: volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload - ${UPLOAD_LOCATION}:/usr/src/app/upload
env_file: env_file:
@ -20,7 +20,7 @@ services:
immich-microservices: immich-microservices:
container_name: immich_microservices container_name: immich_microservices
image: altran1502/immich-server:release image: altran1502/immich-server:release
entrypoint: ["/bin/sh", "./start-microservices.sh"] entrypoint: [ "/bin/sh", "./start-microservices.sh" ]
volumes: volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload - ${UPLOAD_LOCATION}:/usr/src/app/upload
env_file: env_file:
@ -48,7 +48,7 @@ services:
immich-web: immich-web:
container_name: immich_web container_name: immich_web
image: altran1502/immich-web:release image: altran1502/immich-web:release
entrypoint: ["/bin/sh", "./entrypoint.sh"] entrypoint: [ "/bin/sh", "./entrypoint.sh" ]
env_file: env_file:
- .env - .env
restart: always restart: always
@ -59,6 +59,8 @@ services:
environment: environment:
- TYPESENSE_API_KEY=${TYPESENSE_API_KEY} - TYPESENSE_API_KEY=${TYPESENSE_API_KEY}
- TYPESENSE_DATA_DIR=/data - TYPESENSE_DATA_DIR=/data
logging:
driver: none
volumes: volumes:
- tsdata:/data - tsdata:/data