Skip to content

Commit

Permalink
chore: Move away from docker hub where possible (immich-app#2006)
Browse files Browse the repository at this point in the history
* chore(build): Use ghcr images in standard docker-compose

* chore(build): Use ghcr for nginx base image
  • Loading branch information
bo0tzz authored Mar 16, 2023
1 parent 82e8cd0 commit 23e76b0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: "3.8"
services:
immich-server:
container_name: immich_server
image: altran1502/immich-server:release
image: ghcr.io/immich-app/immich-server:release
entrypoint: [ "/bin/sh", "./start-server.sh" ]
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload
Expand All @@ -19,7 +19,7 @@ services:

immich-microservices:
container_name: immich_microservices
image: altran1502/immich-server:release
image: ghcr.io/immich-app/immich-server:release
entrypoint: [ "/bin/sh", "./start-microservices.sh" ]
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload
Expand All @@ -35,7 +35,7 @@ services:

immich-machine-learning:
container_name: immich_machine_learning
image: altran1502/immich-machine-learning:release
image: ghcr.io/immich-app/immich-machine-learning:release
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload
- model-cache:/cache
Expand All @@ -47,7 +47,7 @@ services:

immich-web:
container_name: immich_web
image: altran1502/immich-web:release
image: ghcr.io/immich-app/immich-web:release
entrypoint: [ "/bin/sh", "./entrypoint.sh" ]
env_file:
- .env
Expand Down Expand Up @@ -85,7 +85,7 @@ services:

immich-proxy:
container_name: immich_proxy
image: altran1502/immich-proxy:release
image: ghcr.io/immich-app/immich-proxy:release
environment:
# Make sure these values get passed through from the env file
- IMMICH_SERVER_URL
Expand Down
2 changes: 1 addition & 1 deletion nginx/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/nginxinc/nginx-unprivileged:latest
FROM ghcr.io/nginxinc/nginx-unprivileged:1.23

COPY LICENSE /licenses/LICENSE.txt
COPY LICENSE /LICENSE
Expand Down

0 comments on commit 23e76b0

Please sign in to comment.