Wicked
IImmich
•Created by Keyakinan on 1/27/2023 in #help-desk-support
server error : connect ECONNREFUSED 172.18.0.7:3001
using portainer stack
135 replies
IImmich
•Created by Keyakinan on 1/27/2023 in #help-desk-support
server error : connect ECONNREFUSED 172.18.0.7:3001
i can see i'm not alone with this issue and i really didn't want to delete my database
135 replies
IImmich
•Created by Keyakinan on 1/27/2023 in #help-desk-support
server error : connect ECONNREFUSED 172.18.0.7:3001
everything is default, but since 1.45 it stopped working
135 replies
IImmich
•Created by Keyakinan on 1/27/2023 in #help-desk-support
server error : connect ECONNREFUSED 172.18.0.7:3001
what else do i need to change? db hostname is the docker container name
135 replies
IImmich
•Created by Keyakinan on 1/27/2023 in #help-desk-support
server error : connect ECONNREFUSED 172.18.0.7:3001
JWT_SECRET=***
DB_HOSTNAME=immich_postgres
DB_USERNAME=postgres
DB_PASSWORD=***
DB_DATABASE_NAME=immich
REDIS_HOSTNAME=immich_redis
UPLOAD_LOCATION=/mnt/deluge/Partilhas/immich
IMMICH_WEB_URL=http://immich-web:3000
IMMICH_SERVER_URL=http://immich-server:3001
IMMICH_MACHINE_LEARNING_URL=http://immich-machine-learning:3003
135 replies
IImmich
•Created by Keyakinan on 1/27/2023 in #help-desk-support
server error : connect ECONNREFUSED 172.18.0.7:3001
redis:
container_name: immich_redis
image: redis:6.2
restart: always
database:
container_name: immich_postgres
image: postgres:14
env_file:
- .env
environment:
POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_USER: ${DB_USERNAME}
POSTGRES_DB: ${DB_DATABASE_NAME}
PG_DATA: /var/lib/postgresql/data
volumes:
- pgdata:/var/lib/postgresql/data
restart: always
immich-proxy:
container_name: immich_proxy
image: altran1502/immich-proxy:release
environment:
# Make sure these values get passed through from the env file
- IMMICH_SERVER_URL
- IMMICH_WEB_URL
ports:
- 2283:8080
logging:
driver: none
depends_on:
- immich-server
restart: always
volumes:
pgdata:
135 replies
IImmich
•Created by Keyakinan on 1/27/2023 in #help-desk-support
server error : connect ECONNREFUSED 172.18.0.7:3001
ersion: "3.8"
services:
immich-server:
container_name: immich_server
image: altran1502/immich-server:release
entrypoint: ["/bin/sh", "./start-server.sh"]
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload
env_file:
- .env
environment:
- NODE_ENV=production
depends_on:
- redis
- database
restart: always
immich-microservices:
container_name: immich_microservices
image: altran1502/immich-server:release
entrypoint: ["/bin/sh", "./start-microservices.sh"]
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload
env_file:
- .env
environment:
- NODE_ENV=production
depends_on:
- redis
- database
restart: always
immich-machine-learning:
container_name: immich_machine_learning
image: altran1502/immich-machine-learning:release
entrypoint: ["/bin/sh", "./entrypoint.sh"]
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload
env_file:
- .env
environment:
- NODE_ENV=production
depends_on:
- database
restart: always
immich-web:
container_name: immich_web
image: altran1502/immich-web:release
entrypoint: ["/bin/sh", "./entrypoint.sh"]
env_file:
- .env
restart: always
135 replies
IImmich
•Created by Keyakinan on 1/27/2023 in #help-desk-support
server error : connect ECONNREFUSED 172.18.0.7:3001
cant upload the whole thing without discord nitro, ill break in two
135 replies
IImmich
•Created by Keyakinan on 1/27/2023 in #help-desk-support
server error : connect ECONNREFUSED 172.18.0.7:3001
Thats exactly what i did. Same result.
135 replies
IImmich
•Created by Keyakinan on 1/27/2023 in #help-desk-support
server error : connect ECONNREFUSED 172.18.0.7:3001
I even redeployed with all the basic .env and docker-compose files from your wiki keeping only the pgdata and error persists
135 replies
IImmich
•Created by Keyakinan on 1/27/2023 in #help-desk-support
server error : connect ECONNREFUSED 172.18.0.7:3001
env file was a few lines back
135 replies
IImmich
•Created by Keyakinan on 1/27/2023 in #help-desk-support
server error : connect ECONNREFUSED 172.18.0.7:3001
Here's the docker-compose code
135 replies
IImmich
•Created by Keyakinan on 1/27/2023 in #help-desk-support
server error : connect ECONNREFUSED 172.18.0.7:3001
version: "3.8"
services:
immich-server:
image: altran1502/immich-server:release
entrypoint: ["/bin/sh", "./start-server.sh"]
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload
env_file:
- .env
environment:
- NODE_ENV=production
depends_on:
- redis
- database
restart: always
immich-microservices:
image: altran1502/immich-server:release
entrypoint: ["/bin/sh", "./start-microservices.sh"]
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload
env_file:
- .env
environment:
- NODE_ENV=production
depends_on:
- redis
- database
restart: always
# immich-machine-learning:
# image: altran1502/immich-machine-learning:release
# entrypoint: ["/bin/sh", "./entrypoint.sh"]
# volumes:
# - ${UPLOAD_LOCATION}:/usr/src/app/upload
# env_file:
# - .env
# environment:
# - NODE_ENV=production
# depends_on:
# - database
# restart: always
immich-web:
image: altran1502/immich-web:release
entrypoint: ["/bin/sh", "./entrypoint.sh"]
env_file:
- .env
restart: always
redis:
container_name: immich_redis
image: redis:6.2
restart: always
database:
container_name: immich_postgres
image: postgres:14
env_file:
- .env
environment:
POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_USER: ${DB_USERNAME}
POSTGRES_DB: ${DB_DATABASE_NAME}
PG_DATA: /var/lib/postgresql/data
volumes:
- pgdata:/var/lib/postgresql/data
restart: always
immich-proxy:
container_name: immich_proxy
image: altran1502/immich-proxy:release
ports:
- 2283:8080
logging:
driver: none
depends_on:
- immich-server
restart: always
volumes:
pgdata:
135 replies
IImmich
•Created by Keyakinan on 1/27/2023 in #help-desk-support
server error : connect ECONNREFUSED 172.18.0.7:3001
``
135 replies
IImmich
•Created by Keyakinan on 1/27/2023 in #help-desk-support
server error : connect ECONNREFUSED 172.18.0.7:3001
I was working fine for 6 months. Update from 1.45 onwards broke it for some reason. 127.0.0.1 is localhost.
135 replies
IImmich
•Created by Keyakinan on 1/27/2023 in #help-desk-support
server error : connect ECONNREFUSED 172.18.0.7:3001
Nope, same error with or without
135 replies
IImmich
•Created by Keyakinan on 1/27/2023 in #help-desk-support
server error : connect ECONNREFUSED 172.18.0.7:3001
DB_USERNAME=postgres
DB_PASSWORD=***
DB_DATABASE_NAME=immich
UPLOAD_LOCATION=/mnt/deluge/Partilhas/immich
JWT_SECRET=**
ENABLE_MAPBOX=false
VITE_SERVER_ENDPOINT=http://192.168.1.30:2283/api
DB_HOSTNAME=immich_postgres
135 replies
IImmich
•Created by Keyakinan on 1/27/2023 in #help-desk-support
server error : connect ECONNREFUSED 172.18.0.7:3001

135 replies
IImmich
•Created by Keyakinan on 1/27/2023 in #help-desk-support
server error : connect ECONNREFUSED 172.18.0.7:3001

135 replies
IImmich
•Created by Keyakinan on 1/27/2023 in #help-desk-support
server error : connect ECONNREFUSED 172.18.0.7:3001
I'm getting the same error after upgrading the stack. No change has been made to the env or the host machine.
135 replies