Skip to content

Commit

Permalink
fix: e2e
Browse files Browse the repository at this point in the history
  • Loading branch information
martabal committed Feb 19, 2024
1 parent 37e522d commit b1b7499
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docker/docker-compose.e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ x-server-build: &server-common

services:
immich-server:
command: [ "./start.sh", "immich" ]
command: [ "./start-server.sh" ]
<<: *server-common
ports:
- 2283:3001

immich-microservices:
command: [ "./start.sh", "microservices" ]
command: [ "./start-microservices.sh" ]
<<: *server-common


Expand Down
4 changes: 2 additions & 2 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ services:
immich-server:
container_name: immich_server
image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
command: [ "start.sh", "immich" ]
command: [ "./start-server.sh" ]
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload
- /etc/localtime:/etc/localtime:ro
Expand All @@ -33,7 +33,7 @@ services:
# extends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/hardware-transcoding
# file: hwaccel.transcoding.yml
# service: cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding
command: [ "start.sh", "microservices" ]
command: [ "./start-microservices.sh" ]
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload
- /etc/localtime:/etc/localtime:ro
Expand Down

0 comments on commit b1b7499

Please sign in to comment.