jmwtac
jmwtac
Explore posts from servers
CCoder.com
Created by jmwtac on 8/5/2024 in #help
Fresh instance on Pi 400 using install script (non root). Tried to create new Docker template.
Docker Group docker :x 999:coder
5 replies
IImmich
Created by jmwtac on 3/9/2023 in #help-desk-support
Help: Setup Connection error
Boom, worked now thanks for help
17 replies
IImmich
Created by jmwtac on 3/9/2023 in #help-desk-support
Help: Setup Connection error
ok let me try again
17 replies
IImmich
Created by jmwtac on 3/9/2023 in #help-desk-support
Help: Setup Connection error
yea i removed the env as i added them all in portainer manually
17 replies
IImmich
Created by jmwtac on 3/9/2023 in #help-desk-support
Help: Setup Connection error
version: "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

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
environment:
- NODE_ENV=production
depends_on:
- redis
- database
restart: always

immich-machine-learning:
container_name: immich_machine_learning
image: altran1502/immich-machine-learning:release
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload
- model-cache:/cache
environment:
- NODE_ENV=production
restart: always

immich-web:
container_name: immich_web
image: altran1502/immich-web:release
entrypoint: [ "/bin/sh", "./entrypoint.sh" ]
restart: always

redis:
container_name: immich_redis
image: redis:6.2
restart: always

database:
container_name: immich_postgres
image: postgres:14
environment:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
POSTGRES_DB: immich
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:
model-cache:
version: "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

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
environment:
- NODE_ENV=production
depends_on:
- redis
- database
restart: always

immich-machine-learning:
container_name: immich_machine_learning
image: altran1502/immich-machine-learning:release
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload
- model-cache:/cache
environment:
- NODE_ENV=production
restart: always

immich-web:
container_name: immich_web
image: altran1502/immich-web:release
entrypoint: [ "/bin/sh", "./entrypoint.sh" ]
restart: always

redis:
container_name: immich_redis
image: redis:6.2
restart: always

database:
container_name: immich_postgres
image: postgres:14
environment:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
POSTGRES_DB: immich
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:
model-cache:
17 replies
IImmich
Created by jmwtac on 3/9/2023 in #help-desk-support
Help: Setup Connection error
so i tried by passing them directly in the environment and i still get this error: Error: Config validation error: "DB_USERNAME" is required. "DB_PASSWORD" is required. "DB_DATABASE_NAME" is required 2023-03-09T17:54:01.101013086Z at Function.forRoot (/usr/src/app/node_modules/@nestjs/config/dist/config.module.js:75:23) 2023-03-09T17:54:01.101020194Z at Object.<anonymous> (/usr/src/app/dist/apps/immich/apps/immich/src/app.module.js:31:35) 2023-03-09T17:54:01.101027433Z at Module._compile (node:internal/modules/cjs/loader:1105:14) 2023-03-09T17:54:01.101035884Z at Object.Module._extensions..js (node:internal/modules/cjs/loader:1159:10) 2023-03-09T17:54:01.101044717Z at Module.load (node:internal/modules/cjs/loader:981:32) 2023-03-09T17:54:01.101051654Z at Function.Module._load (node:internal/modules/cjs/loader:822:12) 2023-03-09T17:54:01.101058009Z at Module.require (node:internal/modules/cjs/loader:1005:19) 2023-03-09T17:54:01.101066410Z at require (node:internal/modules/cjs/helpers:102:18) 2023-03-09T17:54:01.101075413Z at Object.<anonymous> (/usr/src/app/dist/apps/immich/apps/immich/src/main.js:12:22) 2023-03-09T17:54:01.101082736Z at Module._compile (node:internal/modules/cjs/loader:1105:14) 2023-03-09T17:54:33.337825399Z /usr/src/app/node_modules/@nestjs/config/dist/config.module.js:75 2023-03-09T17:54:33.337878066Z throw new Error(Config validation error: ${error.message});
17 replies
IImmich
Created by jmwtac on 3/9/2023 in #help-desk-support
Help: Setup Connection error
No description
17 replies
IImmich
Created by jmwtac on 3/9/2023 in #help-desk-support
Help: Setup Connection error
im getting Error: Config validation error: "DB_USERNAME" is required. "DB_PASSWORD" is required. "DB_DATABASE_NAME" is required but they are in my env
17 replies
IImmich
Created by jmwtac on 3/9/2023 in #help-desk-support
Help: Setup Connection error
17 replies