mirror of
https://github.com/immich-app/immich.git
synced 2025-01-02 12:48:35 +02:00
chore: Move away from docker hub where possible (#2006)
* chore(build): Use ghcr images in standard docker-compose * chore(build): Use ghcr for nginx base image
This commit is contained in:
parent
82e8cd0f8d
commit
23e76b0bd9
@ -3,7 +3,7 @@ version: "3.8"
|
|||||||
services:
|
services:
|
||||||
immich-server:
|
immich-server:
|
||||||
container_name: 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" ]
|
entrypoint: [ "/bin/sh", "./start-server.sh" ]
|
||||||
volumes:
|
volumes:
|
||||||
- ${UPLOAD_LOCATION}:/usr/src/app/upload
|
- ${UPLOAD_LOCATION}:/usr/src/app/upload
|
||||||
@ -19,7 +19,7 @@ services:
|
|||||||
|
|
||||||
immich-microservices:
|
immich-microservices:
|
||||||
container_name: 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" ]
|
entrypoint: [ "/bin/sh", "./start-microservices.sh" ]
|
||||||
volumes:
|
volumes:
|
||||||
- ${UPLOAD_LOCATION}:/usr/src/app/upload
|
- ${UPLOAD_LOCATION}:/usr/src/app/upload
|
||||||
@ -35,7 +35,7 @@ services:
|
|||||||
|
|
||||||
immich-machine-learning:
|
immich-machine-learning:
|
||||||
container_name: immich_machine_learning
|
container_name: immich_machine_learning
|
||||||
image: altran1502/immich-machine-learning:release
|
image: ghcr.io/immich-app/immich-machine-learning:release
|
||||||
volumes:
|
volumes:
|
||||||
- ${UPLOAD_LOCATION}:/usr/src/app/upload
|
- ${UPLOAD_LOCATION}:/usr/src/app/upload
|
||||||
- model-cache:/cache
|
- model-cache:/cache
|
||||||
@ -47,7 +47,7 @@ services:
|
|||||||
|
|
||||||
immich-web:
|
immich-web:
|
||||||
container_name: immich_web
|
container_name: immich_web
|
||||||
image: altran1502/immich-web:release
|
image: ghcr.io/immich-app/immich-web:release
|
||||||
entrypoint: [ "/bin/sh", "./entrypoint.sh" ]
|
entrypoint: [ "/bin/sh", "./entrypoint.sh" ]
|
||||||
env_file:
|
env_file:
|
||||||
- .env
|
- .env
|
||||||
@ -85,7 +85,7 @@ services:
|
|||||||
|
|
||||||
immich-proxy:
|
immich-proxy:
|
||||||
container_name: immich_proxy
|
container_name: immich_proxy
|
||||||
image: altran1502/immich-proxy:release
|
image: ghcr.io/immich-app/immich-proxy:release
|
||||||
environment:
|
environment:
|
||||||
# Make sure these values get passed through from the env file
|
# Make sure these values get passed through from the env file
|
||||||
- IMMICH_SERVER_URL
|
- IMMICH_SERVER_URL
|
||||||
|
@ -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 /licenses/LICENSE.txt
|
||||||
COPY LICENSE /LICENSE
|
COPY LICENSE /LICENSE
|
||||||
|
Loading…
Reference in New Issue
Block a user