tubbadu, 1 year ago Maybe show us you docker-compose to have a look on how you configured immich’s network? I didn’t change anything, just followed the instructions on the wiki: <span style="color:#323232;">version: "3.8" </span><span style="color:#323232;"> </span><span style="color:#323232;"># </span><span style="color:#323232;"># WARNING: Make sure to use the docker-compose.yml of the current release: </span><span style="color:#323232;"># </span><span style="color:#323232;"># https://github.com/immich-app/immich/releases/latest/download/docker-compose.yml </span><span style="color:#323232;"># </span><span style="color:#323232;"># The compose file on main may not be compatible with the latest release. </span><span style="color:#323232;"># </span><span style="color:#323232;"> </span><span style="color:#323232;">name: immich </span><span style="color:#323232;"> </span><span style="color:#323232;">services: </span><span style="color:#323232;">immich-server: </span><span style="color:#323232;">container_name: immich_server </span><span style="color:#323232;">image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release} </span><span style="color:#323232;">command: [ "start.sh", "immich" ] </span><span style="color:#323232;">volumes: </span><span style="color:#323232;">- ${UPLOAD_LOCATION}:/usr/src/app/upload </span><span style="color:#323232;">- /etc/localtime:/etc/localtime:ro </span><span style="color:#323232;">env_file: </span><span style="color:#323232;">- .env </span><span style="color:#323232;">ports: </span><span style="color:#323232;">- 2283:3001 </span><span style="color:#323232;">depends_on: </span><span style="color:#323232;">- redis </span><span style="color:#323232;">- database </span><span style="color:#323232;">restart: always </span><span style="color:#323232;"> </span><span style="color:#323232;">immich-microservices: </span><span style="color:#323232;">container_name: immich_microservices </span><span style="color:#323232;">image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release} </span><span style="color:#323232;"># extends: </span><span style="color:#323232;"># file: hwaccel.yml </span><span style="color:#323232;"># service: hwaccel </span><span style="color:#323232;">command: [ "start.sh", "microservices" ] </span><span style="color:#323232;">volumes: </span><span style="color:#323232;">- ${UPLOAD_LOCATION}:/usr/src/app/upload </span><span style="color:#323232;">- /etc/localtime:/etc/localtime:ro </span><span style="color:#323232;">env_file: </span><span style="color:#323232;">- .env </span><span style="color:#323232;">depends_on: </span><span style="color:#323232;">- redis </span><span style="color:#323232;">- database </span><span style="color:#323232;">restart: always </span><span style="color:#323232;"> </span><span style="color:#323232;">immich-machine-learning: </span><span style="color:#323232;">container_name: immich_machine_learning </span><span style="color:#323232;">image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release} </span><span style="color:#323232;">volumes: </span><span style="color:#323232;">- model-cache:/cache </span><span style="color:#323232;">env_file: </span><span style="color:#323232;">- .env </span><span style="color:#323232;">restart: always </span><span style="color:#323232;"> </span><span style="color:#323232;">redis: </span><span style="color:#323232;">container_name: immich_redis </span><span style="color:#323232;">image: redis:6.2-alpine@sha256:c5a607fb6e1bb15d32bbcf14db22787d19e428d59e31a5da67511b49bb0f1ccc </span><span style="color:#323232;">restart: always </span><span style="color:#323232;"> </span><span style="color:#323232;">database: </span><span style="color:#323232;">container_name: immich_postgres </span><span style="color:#323232;">image: tensorchord/pgvecto-rs:pg14-v0.1.11@sha256:0335a1a22f8c5dd1b697f14f079934f5152eaaa216c09b61e293be285491f8ee </span><span style="color:#323232;">env_file: </span><span style="color:#323232;">- .env </span><span style="color:#323232;">environment: </span><span style="color:#323232;">POSTGRES_PASSWORD: ${DB_PASSWORD} </span><span style="color:#323232;">POSTGRES_USER: ${DB_USERNAME} </span><span style="color:#323232;">POSTGRES_DB: ${DB_DATABASE_NAME} </span><span style="color:#323232;">volumes: </span><span style="color:#323232;">- pgdata:/var/lib/postgresql/data </span><span style="color:#323232;">restart: always </span><span style="color:#323232;"> </span><span style="color:#323232;">volumes: </span><span style="color:#323232;">pgdata: </span><span style="color:#323232;">model-cache: </span> The easiest way i can think on how to make your docker-compose work is to reinstall docker and use the host network I’ll try as soon as I can and post here the results, thanks for the time and help! This seems a badly network configuration on you docker stack ! oops, I have lots to learn I guess XD
Maybe show us you docker-compose to have a look on how you configured immich’s network?
I didn’t change anything, just followed the instructions on the wiki:
<span style="color:#323232;">version: "3.8" </span><span style="color:#323232;"> </span><span style="color:#323232;"># </span><span style="color:#323232;"># WARNING: Make sure to use the docker-compose.yml of the current release: </span><span style="color:#323232;"># </span><span style="color:#323232;"># https://github.com/immich-app/immich/releases/latest/download/docker-compose.yml </span><span style="color:#323232;"># </span><span style="color:#323232;"># The compose file on main may not be compatible with the latest release. </span><span style="color:#323232;"># </span><span style="color:#323232;"> </span><span style="color:#323232;">name: immich </span><span style="color:#323232;"> </span><span style="color:#323232;">services: </span><span style="color:#323232;">immich-server: </span><span style="color:#323232;">container_name: immich_server </span><span style="color:#323232;">image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release} </span><span style="color:#323232;">command: [ "start.sh", "immich" ] </span><span style="color:#323232;">volumes: </span><span style="color:#323232;">- ${UPLOAD_LOCATION}:/usr/src/app/upload </span><span style="color:#323232;">- /etc/localtime:/etc/localtime:ro </span><span style="color:#323232;">env_file: </span><span style="color:#323232;">- .env </span><span style="color:#323232;">ports: </span><span style="color:#323232;">- 2283:3001 </span><span style="color:#323232;">depends_on: </span><span style="color:#323232;">- redis </span><span style="color:#323232;">- database </span><span style="color:#323232;">restart: always </span><span style="color:#323232;"> </span><span style="color:#323232;">immich-microservices: </span><span style="color:#323232;">container_name: immich_microservices </span><span style="color:#323232;">image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release} </span><span style="color:#323232;"># extends: </span><span style="color:#323232;"># file: hwaccel.yml </span><span style="color:#323232;"># service: hwaccel </span><span style="color:#323232;">command: [ "start.sh", "microservices" ] </span><span style="color:#323232;">volumes: </span><span style="color:#323232;">- ${UPLOAD_LOCATION}:/usr/src/app/upload </span><span style="color:#323232;">- /etc/localtime:/etc/localtime:ro </span><span style="color:#323232;">env_file: </span><span style="color:#323232;">- .env </span><span style="color:#323232;">depends_on: </span><span style="color:#323232;">- redis </span><span style="color:#323232;">- database </span><span style="color:#323232;">restart: always </span><span style="color:#323232;"> </span><span style="color:#323232;">immich-machine-learning: </span><span style="color:#323232;">container_name: immich_machine_learning </span><span style="color:#323232;">image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release} </span><span style="color:#323232;">volumes: </span><span style="color:#323232;">- model-cache:/cache </span><span style="color:#323232;">env_file: </span><span style="color:#323232;">- .env </span><span style="color:#323232;">restart: always </span><span style="color:#323232;"> </span><span style="color:#323232;">redis: </span><span style="color:#323232;">container_name: immich_redis </span><span style="color:#323232;">image: redis:6.2-alpine@sha256:c5a607fb6e1bb15d32bbcf14db22787d19e428d59e31a5da67511b49bb0f1ccc </span><span style="color:#323232;">restart: always </span><span style="color:#323232;"> </span><span style="color:#323232;">database: </span><span style="color:#323232;">container_name: immich_postgres </span><span style="color:#323232;">image: tensorchord/pgvecto-rs:pg14-v0.1.11@sha256:0335a1a22f8c5dd1b697f14f079934f5152eaaa216c09b61e293be285491f8ee </span><span style="color:#323232;">env_file: </span><span style="color:#323232;">- .env </span><span style="color:#323232;">environment: </span><span style="color:#323232;">POSTGRES_PASSWORD: ${DB_PASSWORD} </span><span style="color:#323232;">POSTGRES_USER: ${DB_USERNAME} </span><span style="color:#323232;">POSTGRES_DB: ${DB_DATABASE_NAME} </span><span style="color:#323232;">volumes: </span><span style="color:#323232;">- pgdata:/var/lib/postgresql/data </span><span style="color:#323232;">restart: always </span><span style="color:#323232;"> </span><span style="color:#323232;">volumes: </span><span style="color:#323232;">pgdata: </span><span style="color:#323232;">model-cache: </span>
The easiest way i can think on how to make your docker-compose work is to reinstall docker and use the host network
I’ll try as soon as I can and post here the results, thanks for the time and help!
This seems a badly network configuration on you docker stack !
oops, I have lots to learn I guess XD