[BUG] Can't connect to immich #167

Closed
opened 2026-02-04 18:19:11 +03:00 by OVERLORD · 23 comments
Owner

Originally created by @basings on GitHub (Jul 30, 2022).

Bug Report

http://ip:2283/api returns error 404

statusCode: 404
message "Cannot GET /api"
error: "Not Found"

http://ip:2283 returns error 500 with the NEW VERSION AVAILABLE screen.
further information on the site:

Local Version empty
Remote Version v1.19.0_29-dev

and

500

Converting circular structure to JSON
    --> starting at object with constructor 'ClientRequest'
    |     property 'socket' -> object with constructor 'Socket'
    --- property '_httpMessage' closes the circle

TypeError: Converting circular structure to JSON
    --> starting at object with constructor 'ClientRequest'
    |     property 'socket' -> object with constructor 'Socket'
    --- property '_httpMessage' closes the circle

http://ip:2283/api/user/count returns userCount: 0

http://ip:2283/api/server-info/ping returns res: "pong"

  • #327
    • tag is set to 'release` in my docker-compose file
    • neither adding/removing /api at the end of the url does work
    • port is set to 2283
  • #251 I set the right ip
  • #186 I don't have an /immich/settings folder. Old version?

Task List

  • I have read thoroughly the README setup and installation instructions.
  • I have included my docker-compose file. (default, currently on github)
  • I have included my redacted .env file. (default, only changed the ip address and folder)
  • I have included information on my machine, and environment.

To Reproduce
Steps to reproduce the behavior: Not sure if it is reproducible. Instead I write down my workflow

  1. navigate into folder
  2. git clone https://github.com/immich-app/immich immich
  3. cd immich
  4. mkdir docker/test
  5. cp docker/.env.example docker/.env
  6. nano docker/.env replace folder path (home/immich/docker/test) and ip address
  7. docker-compose -f ./docker/docker-compose.yml up
  8. open firefox and type in http://ip:2283/api (and others specified above)
  9. open immich on android 12 but it opens directly the login screen but I do not yet have an (admin) account.

Additional context

  • default docker-compose file
  • default .env file with updated folder path and ip address:
##################################################################################
# Database
###################################################################################

DB_HOSTNAME=immich_postgres
DB_USERNAME=postgres
DB_PASSWORD=postgres
DB_DATABASE_NAME=immich

# Optional Database settings:
# DB_PORT=5432




###################################################################################
# Redis
###################################################################################

REDIS_HOSTNAME=immich_redis

# Optional Redis settings:
# REDIS_PORT=6379
# REDIS_DBINDEX=0
# REDIS_PASSWORD=
# REDIS_SOCKET=





###################################################################################
# Upload File Config
###################################################################################

UPLOAD_LOCATION=/home/immich/docker/test




###################################################################################
# JWT SECRET
###################################################################################

JWT_SECRET=randomstringthatissolongandpowerfulthatnoonecanguess



###################################################################################
# MAPBOX
####################################################################################

# ENABLE_MAPBOX is either true of false -> if true, you have to provide MAPBOX_KEY
ENABLE_MAPBOX=false
MAPBOX_KEY=




###################################################################################
# WEB - Required
###################################################################################

# This is the URL of your vm/server where you host Immich, so that the web frontend
# know where can it make the request to.
# For example: If your server IP address is 10.1.11.50, the environment variable will
# be VITE_SERVER_ENDPOINT=http://10.1.11.50:2283/api
# !CAUTION! THERE IS NO FORWARD SLASH AT THE END

VITE_SERVER_ENDPOINT=http://10.1.11.50:2283/api


####################################################################################
# WEB - Optional
####################################################################################

# Custom message on the login page, should be written in HTML form.
# For example VITE_LOGIN_PAGE_MESSAGE="This is a demo instance of Immich.<br><br>Email: <i>demo@demo.de</i><br>Passwo>

VITE_LOGIN_PAGE_MESSAGE=

where 10.1.11.50 is replaced with my local ip

Originally created by @basings on GitHub (Jul 30, 2022). ### Bug Report `http://ip:2283/api` returns error 404 ```` statusCode: 404 message "Cannot GET /api" error: "Not Found" ```` `http://ip:2283` returns error 500 with the `NEW VERSION AVAILABLE` screen. further information on the site: ```` Local Version empty Remote Version v1.19.0_29-dev ```` and ```` 500 Converting circular structure to JSON --> starting at object with constructor 'ClientRequest' | property 'socket' -> object with constructor 'Socket' --- property '_httpMessage' closes the circle TypeError: Converting circular structure to JSON --> starting at object with constructor 'ClientRequest' | property 'socket' -> object with constructor 'Socket' --- property '_httpMessage' closes the circle ```` `http://ip:2283/api/user/count` returns `userCount: 0` `http://ip:2283/api/server-info/ping` returns `res: "pong"` ### Related issues - #327 - tag is set to 'release` in my docker-compose file - neither adding/removing /api at the end of the url does work - port is set to 2283 - #251 I set the right ip - #186 I don't have an /immich/settings folder. Old version? ### Task List - [x] I have read thoroughly the README setup and installation instructions. - [x] I have included my `docker-compose` file. (default, currently on github) - [x] I have included my redacted `.env` file. (default, only changed the ip address and folder) - [x] I have included information on my machine, and environment. **To Reproduce** ~~Steps to reproduce the behavior:~~ Not sure if it is reproducible. Instead I write down my workflow 1. navigate into folder 2. `git clone https://github.com/immich-app/immich immich` 3. `cd immich` 4. `mkdir docker/test` 5. `cp docker/.env.example docker/.env` 6. `nano docker/.env` replace folder path (`home/immich/docker/test`) and ip address 7. `docker-compose -f ./docker/docker-compose.yml up` 8. open firefox and type in `http://ip:2283/api` (and others specified above) 9. open immich on android 12 but it opens directly the login screen but I do not yet have an (admin) account. ### Additional context - default docker-compose file - default .env file with updated folder path and ip address: ```` ################################################################################## # Database ################################################################################### DB_HOSTNAME=immich_postgres DB_USERNAME=postgres DB_PASSWORD=postgres DB_DATABASE_NAME=immich # Optional Database settings: # DB_PORT=5432 ################################################################################### # Redis ################################################################################### REDIS_HOSTNAME=immich_redis # Optional Redis settings: # REDIS_PORT=6379 # REDIS_DBINDEX=0 # REDIS_PASSWORD= # REDIS_SOCKET= ################################################################################### # Upload File Config ################################################################################### UPLOAD_LOCATION=/home/immich/docker/test ################################################################################### # JWT SECRET ################################################################################### JWT_SECRET=randomstringthatissolongandpowerfulthatnoonecanguess ################################################################################### # MAPBOX #################################################################################### # ENABLE_MAPBOX is either true of false -> if true, you have to provide MAPBOX_KEY ENABLE_MAPBOX=false MAPBOX_KEY= ################################################################################### # WEB - Required ################################################################################### # This is the URL of your vm/server where you host Immich, so that the web frontend # know where can it make the request to. # For example: If your server IP address is 10.1.11.50, the environment variable will # be VITE_SERVER_ENDPOINT=http://10.1.11.50:2283/api # !CAUTION! THERE IS NO FORWARD SLASH AT THE END VITE_SERVER_ENDPOINT=http://10.1.11.50:2283/api #################################################################################### # WEB - Optional #################################################################################### # Custom message on the login page, should be written in HTML form. # For example VITE_LOGIN_PAGE_MESSAGE="This is a demo instance of Immich.<br><br>Email: <i>demo@demo.de</i><br>Passwo> VITE_LOGIN_PAGE_MESSAGE= ```` where 10.1.11.50 is replaced with my local ip
Author
Owner

@alextran1502 commented on GitHub (Jul 30, 2022):

I see that you used .env.test instead of .env.example. Can you try to specify an absolute path of your UPLOAD_LOCATION and map it to a directory you have created?

@alextran1502 commented on GitHub (Jul 30, 2022): I see that you used `.env.test` instead of `.env.example`. Can you try to specify an **absolute path** of your `UPLOAD_LOCATION` and map it to a directory you have created?
Author
Owner

@basings commented on GitHub (Jul 30, 2022):

Thanks for the response!

  • I used .env.example, not .env.test that was a typo in the report, sorry.
  • I updated to an absolute path (I already did it yesterday with an absolute path and thought today that I might try it with that). Nothing changes
  • I updated my first comment accordingly
@basings commented on GitHub (Jul 30, 2022): Thanks for the response! - I used `.env.example`, not `.env.test` that was a typo in the report, sorry. - I updated to an absolute path (I already did it yesterday with an absolute path and thought today that I might try it with that). Nothing changes - I updated my first comment accordingly
Author
Owner

@alextran1502 commented on GitHub (Jul 30, 2022):

Let's try this on a different browser first. I suspect something wrong with Firefox if you are trying access a site using HTTP, it might block some content being delivered to the browswer

@alextran1502 commented on GitHub (Jul 30, 2022): Let's try this on a different browser first. I suspect something wrong with Firefox if you are trying access a site using HTTP, it might block some content being delivered to the browswer
Author
Owner

@basings commented on GitHub (Jul 30, 2022):

Alright, need to install one first.

@basings commented on GitHub (Jul 30, 2022): Alright, need to install one first.
Author
Owner

@basings commented on GitHub (Jul 30, 2022):

firefox isn't the problem. Same responses with chromium

@basings commented on GitHub (Jul 30, 2022): firefox isn't the problem. Same responses with chromium
Author
Owner

@alextran1502 commented on GitHub (Jul 30, 2022):

Can you bring all the containers down and up and then monitor to see if anything strange happens during the start-up process?

@alextran1502 commented on GitHub (Jul 30, 2022): Can you bring all the containers down and up and then monitor to see if anything strange happens during the start-up process?
Author
Owner

@basings commented on GitHub (Jul 30, 2022):

nothing too serious, I guess.

  • Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf
  • WARNING overcommit_memory is set to 0! Background save may fail under low memory condition.
$ sudo docker-compose -f ./docker/docker-compose.yml up
[+] Running 7/0
 ⠿ Container immich_redis                      Created                                                           0.0s
 ⠿ Container docker-immich-web-1               Created                                                           0.0s
 ⠿ Container immich_postgres                   Created                                                           0.0s
 ⠿ Container docker-immich-server-1            Created                                                           0.0s
 ⠿ Container docker-immich-machine-learning-1  Created                                                           0.0s
 ⠿ Container docker-immich-microservices-1     Created                                                           0.0s
 ⠿ Container immich_proxy                      Created                                                           0.0s
Attaching to docker-immich-machine-learning-1, docker-immich-microservices-1, docker-immich-server-1, docker-immich-web-1, immich_postgres, immich_proxy, immich_redis
immich_redis                      | 1:C 30 Jul 2022 14:44:54.680 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
immich_redis                      | 1:C 30 Jul 2022 14:44:54.680 # Redis version=6.2.7, bits=64, commit=00000000, modified=0, pid=1, just started
immich_redis                      | 1:C 30 Jul 2022 14:44:54.680 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf
immich_redis                      | 1:M 30 Jul 2022 14:44:54.681 * monotonic clock: POSIX clock_gettime
immich_redis                      | 1:M 30 Jul 2022 14:44:54.681 # A key '__redis__compare_helper' was added to Lua globals which is not on the globals allow list nor listed on the deny list.
immich_redis                      | 1:M 30 Jul 2022 14:44:54.681 * Running mode=standalone, port=6379.
immich_redis                      | 1:M 30 Jul 2022 14:44:54.681 # Server initialized
immich_redis                      | 1:M 30 Jul 2022 14:44:54.681 # WARNING overcommit_memory is set to 0! Background save may fail under low memory condition. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sysctl vm.overcommit_memory=1' for this to take effect.
immich_redis                      | 1:M 30 Jul 2022 14:44:54.682 * Loading RDB produced by version 6.2.7
immich_redis                      | 1:M 30 Jul 2022 14:44:54.682 * RDB age 19 seconds
immich_redis                      | 1:M 30 Jul 2022 14:44:54.682 * RDB memory usage when created 0.78 Mb
immich_redis                      | 1:M 30 Jul 2022 14:44:54.682 # Done loading RDB, keys loaded: 0, keys expired: 5.
immich_redis                      | 1:M 30 Jul 2022 14:44:54.682 * DB loaded from disk: 0.000 seconds
immich_redis                      | 1:M 30 Jul 2022 14:44:54.682 * Ready to accept connections
immich_postgres                   | 
immich_postgres                   | PostgreSQL Database directory appears to contain a database; Skipping initialization
immich_postgres                   | 
immich_postgres                   | 2022-07-30 14:44:54.779 UTC [1] LOG:  starting PostgreSQL 14.4 (Debian 14.4-1.pgdg110+1) on x86_64-pc-linux-gnu, compiled by gcc (Debian 10.2.1-6) 10.2.1 20210110, 64-bit
immich_postgres                   | 2022-07-30 14:44:54.780 UTC [1] LOG:  listening on IPv4 address "0.0.0.0", port 5432
immich_postgres                   | 2022-07-30 14:44:54.780 UTC [1] LOG:  listening on IPv6 address "::", port 5432
immich_postgres                   | 2022-07-30 14:44:54.783 UTC [1] LOG:  listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
immich_postgres                   | 2022-07-30 14:44:54.789 UTC [26] LOG:  database system was shut down at 2022-07-30 14:44:35 UTC
immich_postgres                   | 2022-07-30 14:44:54.793 UTC [1] LOG:  database system is ready to accept connections
docker-immich-web-1               | 
docker-immich-web-1               | > immich-web@1.0.0 build
docker-immich-web-1               | > vite build
docker-immich-web-1               | 
docker-immich-machine-learning-1  | 
docker-immich-machine-learning-1  | > nest_microservices@0.0.1 prebuild
docker-immich-machine-learning-1  | > rimraf dist
docker-immich-machine-learning-1  | 
docker-immich-machine-learning-1  | 
docker-immich-machine-learning-1  | > nest_microservices@0.0.1 build
docker-immich-machine-learning-1  | > nest build
docker-immich-machine-learning-1  | 
docker-immich-web-1               | vite v3.0.0 building for production...
docker-immich-web-1               | transforming...
immich_proxy                      | /docker-entrypoint.sh: /docker-entrypoint.d/ is not empty, will attempt to perform configuration
immich_proxy                      | /docker-entrypoint.sh: Looking for shell scripts in /docker-entrypoint.d/
immich_proxy                      | /docker-entrypoint.sh: Launching /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh
immich_proxy                      | 10-listen-on-ipv6-by-default.sh: info: Getting the checksum of /etc/nginx/conf.d/default.conf
immich_proxy                      | 10-listen-on-ipv6-by-default.sh: info: /etc/nginx/conf.d/default.conf differs from the packaged version
immich_proxy                      | /docker-entrypoint.sh: Launching /docker-entrypoint.d/20-envsubst-on-templates.sh
immich_proxy                      | /docker-entrypoint.sh: Launching /docker-entrypoint.d/30-tune-worker-processes.sh
immich_proxy                      | /docker-entrypoint.sh: Configuration complete; ready for start up
immich_proxy                      | 2022/07/30 14:44:56 [notice] 1#1: using the "epoll" event method
immich_proxy                      | 2022/07/30 14:44:56 [notice] 1#1: nginx/1.23.1
immich_proxy                      | 2022/07/30 14:44:56 [notice] 1#1: built by gcc 10.2.1 20210110 (Debian 10.2.1-6) 
immich_proxy                      | 2022/07/30 14:44:56 [notice] 1#1: OS: Linux 5.18.12-arch1-1
immich_proxy                      | 2022/07/30 14:44:56 [notice] 1#1: getrlimit(RLIMIT_NOFILE): 1048576:1048576
immich_proxy                      | 2022/07/30 14:44:56 [notice] 1#1: start worker processes
immich_proxy                      | 2022/07/30 14:44:56 [notice] 1#1: start worker process 29
immich_proxy                      | 2022/07/30 14:44:56 [notice] 1#1: start worker process 30
immich_proxy                      | 2022/07/30 14:44:56 [notice] 1#1: start worker process 31
immich_proxy                      | 2022/07/30 14:44:56 [notice] 1#1: start worker process 32
docker-immich-microservices-1     | [Nest] 6  - 07/30/2022, 2:44:57 PM     LOG [NestFactory] Starting Nest application...
docker-immich-microservices-1     | [Nest] 6  - 07/30/2022, 2:44:57 PM     LOG [InstanceLoader] DatabaseModule dependencies initialized +103ms
docker-immich-microservices-1     | [Nest] 6  - 07/30/2022, 2:44:57 PM     LOG [InstanceLoader] TypeOrmModule dependencies initialized +1ms
docker-immich-microservices-1     | [Nest] 6  - 07/30/2022, 2:44:57 PM     LOG [InstanceLoader] BullModule dependencies initialized +0ms
docker-immich-microservices-1     | [Nest] 6  - 07/30/2022, 2:44:57 PM     LOG [InstanceLoader] JwtModule dependencies initialized +1ms
docker-immich-microservices-1     | [Nest] 6  - 07/30/2022, 2:44:57 PM     LOG [InstanceLoader] DiscoveryModule dependencies initialized +1ms
docker-immich-microservices-1     | [Nest] 6  - 07/30/2022, 2:44:57 PM     LOG [InstanceLoader] BullModule dependencies initialized +12ms
docker-immich-microservices-1     | [Nest] 6  - 07/30/2022, 2:44:57 PM     LOG [InstanceLoader] BullModule dependencies initialized +1ms
docker-immich-microservices-1     | [Nest] 6  - 07/30/2022, 2:44:57 PM     LOG [InstanceLoader] BullModule dependencies initialized +1ms
docker-immich-microservices-1     | [Nest] 6  - 07/30/2022, 2:44:57 PM     LOG [InstanceLoader] BullModule dependencies initialized +1ms
docker-immich-microservices-1     | [Nest] 6  - 07/30/2022, 2:44:57 PM     LOG [InstanceLoader] BullModule dependencies initialized +0ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:58 PM     LOG [NestFactory] Starting Nest application...
docker-immich-microservices-1     | [Nest] 6  - 07/30/2022, 2:44:58 PM     LOG [InstanceLoader] TypeOrmCoreModule dependencies initialized +349ms
docker-immich-microservices-1     | [Nest] 6  - 07/30/2022, 2:44:58 PM     LOG [InstanceLoader] TypeOrmModule dependencies initialized +0ms
docker-immich-microservices-1     | [Nest] 6  - 07/30/2022, 2:44:58 PM     LOG [InstanceLoader] TypeOrmModule dependencies initialized +1ms
docker-immich-microservices-1     | [Nest] 6  - 07/30/2022, 2:44:58 PM     LOG [InstanceLoader] ImmichJwtModule dependencies initialized +2ms
docker-immich-microservices-1     | [Nest] 6  - 07/30/2022, 2:44:58 PM     LOG [InstanceLoader] CommunicationModule dependencies initialized +0ms
docker-immich-microservices-1     | [Nest] 6  - 07/30/2022, 2:44:58 PM     LOG [InstanceLoader] MicroservicesModule dependencies initialized +1ms
docker-immich-microservices-1     | [Nest] 6  - 07/30/2022, 2:44:58 PM     LOG [NestApplication] Nest application successfully started +37ms
docker-immich-microservices-1     | [Nest] 6  - 07/30/2022, 2:44:58 PM     LOG [ImmichMicroservice] Running Immich Microservices in PRODUCTION environment
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:58 PM     LOG [InstanceLoader] DatabaseModule dependencies initialized +208ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:58 PM     LOG [InstanceLoader] TypeOrmModule dependencies initialized +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:58 PM     LOG [InstanceLoader] BullModule dependencies initialized +0ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:58 PM     LOG [InstanceLoader] JwtModule dependencies initialized +2ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:58 PM     LOG [InstanceLoader] AppModule dependencies initialized +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:58 PM     LOG [InstanceLoader] ConfigHostModule dependencies initialized +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:58 PM     LOG [InstanceLoader] DiscoveryModule dependencies initialized +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:58 PM     LOG [InstanceLoader] ServerInfoModule dependencies initialized +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:58 PM     LOG [InstanceLoader] ConfigModule dependencies initialized +11ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:58 PM     LOG [InstanceLoader] ScheduleModule dependencies initialized +2ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:58 PM     LOG [InstanceLoader] BullModule dependencies initialized +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:58 PM     LOG [InstanceLoader] BullModule dependencies initialized +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:58 PM     LOG [InstanceLoader] BullModule dependencies initialized +2ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:58 PM     LOG [InstanceLoader] BullModule dependencies initialized +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:58 PM     LOG [InstanceLoader] BullModule dependencies initialized +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:58 PM     LOG [InstanceLoader] BullModule dependencies initialized +0ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:58 PM     LOG [InstanceLoader] TypeOrmCoreModule dependencies initialized +265ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:58 PM     LOG [InstanceLoader] TypeOrmModule dependencies initialized +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:58 PM     LOG [InstanceLoader] TypeOrmModule dependencies initialized +0ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:58 PM     LOG [InstanceLoader] TypeOrmModule dependencies initialized +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:58 PM     LOG [InstanceLoader] TypeOrmModule dependencies initialized +0ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:58 PM     LOG [InstanceLoader] TypeOrmModule dependencies initialized +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:58 PM     LOG [InstanceLoader] TypeOrmModule dependencies initialized +0ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:58 PM     LOG [InstanceLoader] CommunicationModule dependencies initialized +2ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:58 PM     LOG [InstanceLoader] ImmichJwtModule dependencies initialized +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:58 PM     LOG [InstanceLoader] BackgroundTaskModule dependencies initialized +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:58 PM     LOG [InstanceLoader] ScheduleTasksModule dependencies initialized +0ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:58 PM     LOG [InstanceLoader] DeviceInfoModule dependencies initialized +5ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:58 PM     LOG [InstanceLoader] AuthModule dependencies initialized +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:58 PM     LOG [InstanceLoader] AlbumModule dependencies initialized +0ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:58 PM     LOG [InstanceLoader] UserModule dependencies initialized +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:58 PM     LOG [InstanceLoader] AssetModule dependencies initialized +0ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RoutesResolver] AppController {/}: +459ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RoutesResolver] UserController {/user}: +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/user, GET} route +3ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/user/info/:userId, GET} route +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/user/me, GET} route +2ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/user, POST} route +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/user/count, GET} route +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/user, PUT} route +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/user/profile-image, POST} route +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/user/profile-image/:userId, GET} route +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RoutesResolver] AssetController {/asset}: +0ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/asset/upload, POST} route +2ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/asset/download, GET} route +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/asset/file, GET} route +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/asset/thumbnail/:assetId, GET} route +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/asset/allObjects, GET} route +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/asset/allLocation, GET} route +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/asset/searchTerm, GET} route +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/asset/search, POST} route +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/asset, GET} route +0ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/asset/:deviceId, GET} route +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/asset/assetById/:assetId, GET} route +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/asset, DELETE} route +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/asset/check, POST} route +2ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RoutesResolver] AuthController {/auth}: +0ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/auth/login, POST} route +2ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/auth/admin-sign-up, POST} route +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/auth/validateToken, POST} route +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/auth/logout, POST} route +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RoutesResolver] DeviceInfoController {/device-info}: +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/device-info, POST} route +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/device-info, PATCH} route +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RoutesResolver] ServerInfoController {/server-info}: +0ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/server-info, GET} route +2ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/server-info/ping, GET} route +0ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/server-info/version, GET} route +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RoutesResolver] AlbumController {/album}: +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/album, POST} route +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/album/:albumId/users, PUT} route +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/album/:albumId/assets, PUT} route +0ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/album, GET} route +2ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/album/:albumId, GET} route +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/album/:albumId/assets, DELETE} route +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/album/:albumId, DELETE} route +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/album/:albumId/user/:userId, DELETE} route +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [RouterExplorer] Mapped {/album/:albumId, PATCH} route +1ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [NestApplication] Nest application successfully started +47ms
docker-immich-server-1            | [Nest] 7  - 07/30/2022, 2:44:59 PM     LOG [ImmichServer] Running Immich Server in PRODUCTION environment
docker-immich-machine-learning-1  | 
docker-immich-machine-learning-1  | > nest_microservices@0.0.1 start:prod
docker-immich-machine-learning-1  | > node dist/main
docker-immich-machine-learning-1  | 
docker-immich-machine-learning-1  | 2022-07-30 14:45:04.187189: I tensorflow/core/platform/cpu_feature_guard.cc:151] This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDNN) to use the following CPU instructions in performance-critical operations:  AVX2 FMA
docker-immich-machine-learning-1  | To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags.
docker-immich-machine-learning-1  | [Nest] 53  - 07/30/2022, 2:45:04 PM     LOG [NestFactory] Starting Nest application...
docker-immich-machine-learning-1  | [Nest] 53  - 07/30/2022, 2:45:04 PM     LOG [ImageClassifier] Running Node TensorFlow Version : 3.19.0
docker-immich-machine-learning-1  | [Nest] 53  - 07/30/2022, 2:45:04 PM     LOG [ObjectDetection] Running Node TensorFlow Version : 3.19.0
docker-immich-machine-learning-1  | [Nest] 53  - 07/30/2022, 2:45:04 PM     LOG [InstanceLoader] AppModule dependencies initialized +3ms
docker-immich-machine-learning-1  | [Nest] 53  - 07/30/2022, 2:45:04 PM     LOG [InstanceLoader] TypeOrmModule dependencies initialized +1ms
docker-immich-machine-learning-1  | [Nest] 53  - 07/30/2022, 2:45:04 PM     LOG [InstanceLoader] ImageClassifierModule dependencies initialized +0ms
docker-immich-machine-learning-1  | [Nest] 53  - 07/30/2022, 2:45:04 PM     LOG [InstanceLoader] ObjectDetectionModule dependencies initialized +0ms
docker-immich-machine-learning-1  | [Nest] 53  - 07/30/2022, 2:45:04 PM     LOG [InstanceLoader] TypeOrmCoreModule dependencies initialized +67ms
docker-immich-machine-learning-1  | [Nest] 53  - 07/30/2022, 2:45:04 PM     LOG [RoutesResolver] ImageClassifierController {/image-classifier}: +5ms
docker-immich-machine-learning-1  | [Nest] 53  - 07/30/2022, 2:45:04 PM     LOG [RouterExplorer] Mapped {/image-classifier/tag-image, POST} route +2ms
docker-immich-machine-learning-1  | [Nest] 53  - 07/30/2022, 2:45:04 PM     LOG [RoutesResolver] ObjectDetectionController {/object-detection}: +0ms
docker-immich-machine-learning-1  | [Nest] 53  - 07/30/2022, 2:45:04 PM     LOG [RouterExplorer] Mapped {/object-detection/detect-object, POST} route +1ms
docker-immich-machine-learning-1  | [Nest] 53  - 07/30/2022, 2:45:04 PM     LOG [NestApplication] Nest application successfully started +3ms
docker-immich-machine-learning-1  | [Nest] 53  - 07/30/2022, 2:45:04 PM     LOG [IMMICH MICROSERVICES] Running Immich Machine Learning in PRODUCTION environment
docker-immich-web-1               | ✓ 812 modules transformed.
docker-immich-web-1               | rendering chunks...
docker-immich-web-1               | .svelte-kit/output/client/_app/manifest.json                                                          10.57 KiB
docker-immich-web-1               | .svelte-kit/output/client/_app/immutable/start-1daf651d.js                                            27.91 KiB / gzip: 9.15 KiB
docker-immich-web-1               | .svelte-kit/output/client/_app/immutable/error.svelte-7be623ed.js                                     1.56 KiB / gzip: 0.75 KiB
docker-immich-web-1               | .svelte-kit/output/client/_app/immutable/pages/albums/_albumId_/photos/_assetId_.svelte-7e038145.js   0.44 KiB / gzip: 0.30 KiB
docker-immich-web-1               | .svelte-kit/output/client/_app/immutable/pages/__layout.svelte-2ebbe01b.js                            21.05 KiB / gzip: 7.61 KiB
docker-immich-web-1               | .svelte-kit/output/client/_app/immutable/pages/admin/index.svelte-d4b52d25.js                         15.66 KiB / gzip: 5.74 KiB
docker-immich-web-1               | .svelte-kit/output/client/_app/immutable/pages/albums/index.svelte-1d6cb4de.js                        11.84 KiB / gzip: 4.78 KiB
docker-immich-web-1               | .svelte-kit/output/client/_app/immutable/pages/auth/change-password/index.svelte-3fd703bd.js          6.57 KiB / gzip: 2.79 KiB
docker-immich-web-1               | .svelte-kit/output/client/_app/immutable/pages/auth/login/index.svelte-223cbe36.js                    4.59 KiB / gzip: 2.04 KiB
docker-immich-web-1               | .svelte-kit/output/client/_app/immutable/pages/auth/register/index.svelte-e6295d1b.js                 7.40 KiB / gzip: 2.88 KiB
docker-immich-web-1               | .svelte-kit/output/client/_app/immutable/pages/index.svelte-507c3918.js                               2.35 KiB / gzip: 1.19 KiB
docker-immich-web-1               | .svelte-kit/output/client/_app/immutable/pages/photos/_assetId_.svelte-6e616e48.js                    0.37 KiB / gzip: 0.26 KiB
docker-immich-web-1               | .svelte-kit/output/client/_app/immutable/pages/photos/index.svelte-7f912687.js                        6.98 KiB / gzip: 3.07 KiB
docker-immich-web-1               | .svelte-kit/output/client/_app/immutable/pages/sharing/index.svelte-82402c63.js                       9.10 KiB / gzip: 3.70 KiB
docker-immich-web-1               | .svelte-kit/output/client/_app/immutable/chunks/index-cdc8ee48.js                                     0.79 KiB / gzip: 0.49 KiB
docker-immich-web-1               | .svelte-kit/output/client/_app/immutable/chunks/singletons-cdeec3fd.js                                0.05 KiB / gzip: 0.07 KiB
docker-immich-web-1               | .svelte-kit/output/client/_app/immutable/chunks/preload-helper-4c397a37.js                            0.69 KiB / gzip: 0.43 KiB
docker-immich-web-1               | .svelte-kit/output/client/_app/immutable/chunks/index-7b960913.js                                     1.48 KiB / gzip: 0.59 KiB
docker-immich-web-1               | .svelte-kit/output/client/_app/immutable/chunks/navigation-bcb9efb9.js                                0.19 KiB / gzip: 0.15 KiB
docker-immich-web-1               | .svelte-kit/output/client/_app/immutable/chunks/index-73abe660.js                                     13.28 KiB / gzip: 5.58 KiB
docker-immich-web-1               | .svelte-kit/output/client/_app/immutable/chunks/full-screen-modal-522218aa.js                         1.22 KiB / gzip: 0.75 KiB
docker-immich-web-1               | .svelte-kit/output/client/_app/immutable/chunks/click-outside-d61b158d.js                             0.21 KiB / gzip: 0.16 KiB
docker-immich-web-1               | .svelte-kit/output/client/_app/immutable/chunks/loading-spinner-5cb482b5.js                           2.15 KiB / gzip: 1.17 KiB
docker-immich-web-1               | .svelte-kit/output/client/_app/immutable/chunks/circle-icon-button-5b8466fc.js                        1.79 KiB / gzip: 1.00 KiB
docker-immich-web-1               | .svelte-kit/output/client/_app/immutable/chunks/DeleteOutline-3eb12843.js                             4.92 KiB / gzip: 1.94 KiB
docker-immich-web-1               | .svelte-kit/output/client/_app/immutable/chunks/ImageOutline-431d3d1f.js                              1.08 KiB / gzip: 0.62 KiB
docker-immich-web-1               | .svelte-kit/output/client/_app/immutable/chunks/side-bar-9e07545d.js                                  3.79 KiB / gzip: 1.65 KiB
docker-immich-web-1               | .svelte-kit/output/client/_app/immutable/chunks/PlusBoxOutline-6c8c4589.js                            1.07 KiB / gzip: 0.61 KiB
docker-immich-web-1               | .svelte-kit/output/client/_app/immutable/chunks/api-ac2cea2c.js                                       41.44 KiB / gzip: 10.57 KiB
docker-immich-web-1               | .svelte-kit/output/client/_app/immutable/assets/file-uploader-b81acd7f.css                            0.21 KiB / gzip: 0.18 KiB
docker-immich-web-1               | .svelte-kit/output/client/_app/immutable/assets/circle-icon-button-3e5300b3.css                       0.16 KiB / gzip: 0.12 KiB
docker-immich-web-1               | .svelte-kit/output/client/_app/immutable/assets/__layout-cb95c790.css                                 22.89 KiB / gzip: 4.94 KiB
docker-immich-web-1               | .svelte-kit/output/client/_app/immutable/chunks/status-box-3ddee11a.js                                20.68 KiB / gzip: 6.64 KiB
docker-immich-web-1               | .svelte-kit/output/client/_app/immutable/pages/albums/_albumId_/index.svelte-b6a52195.js              56.52 KiB / gzip: 16.30 KiB
docker-immich-web-1               | .svelte-kit/output/client/_app/immutable/chunks/leaflet-src-47401280.js                               142.58 KiB / gzip: 41.34 KiB
docker-immich-web-1               | .svelte-kit/output/client/_app/immutable/chunks/file-uploader-866bb504.js                             121.13 KiB / gzip: 38.35 KiB
docker-immich-web-1               | .svelte-kit/output/client/_app/immutable/chunks/assets-4d53dcd0.js                                    218.21 KiB / gzip: 75.59 KiB
docker-immich-web-1               | vite v3.0.0 building SSR bundle for production...
docker-immich-web-1               | transforming...
docker-immich-web-1               | ✓ 113 modules transformed.
docker-immich-web-1               | rendering chunks...
docker-immich-web-1               | .svelte-kit/output/server/manifest.json                                               6.15 KiB
docker-immich-web-1               | .svelte-kit/output/server/index.js                                                    76.18 KiB
docker-immich-web-1               | .svelte-kit/output/server/entries/endpoints/auth/logout.ts.js                         0.43 KiB
docker-immich-web-1               | .svelte-kit/output/server/entries/pages/__layout.svelte.js                            7.45 KiB
docker-immich-web-1               | .svelte-kit/output/server/entries/fallbacks/error.svelte.js                           0.74 KiB
docker-immich-web-1               | .svelte-kit/output/server/entries/pages/admin/index.svelte.js                         5.37 KiB
docker-immich-web-1               | .svelte-kit/output/server/entries/pages/albums/_albumId_/index.svelte.js              16.74 KiB
docker-immich-web-1               | .svelte-kit/output/server/entries/pages/albums/_albumId_/photos/_assetId_.svelte.js   0.71 KiB
docker-immich-web-1               | .svelte-kit/output/server/entries/pages/albums/index.svelte.js                        5.09 KiB
docker-immich-web-1               | .svelte-kit/output/server/entries/pages/auth/change-password/index.svelte.js          3.17 KiB
docker-immich-web-1               | .svelte-kit/output/server/entries/pages/auth/login/index.svelte.js                    1.90 KiB
docker-immich-web-1               | .svelte-kit/output/server/entries/pages/auth/register/index.svelte.js                 3.29 KiB
docker-immich-web-1               | .svelte-kit/output/server/entries/pages/index.svelte.js                               1.64 KiB
docker-immich-web-1               | .svelte-kit/output/server/entries/pages/photos/_assetId_.svelte.js                    0.55 KiB
docker-immich-web-1               | .svelte-kit/output/server/entries/pages/photos/index.svelte.js                        3.22 KiB
docker-immich-web-1               | .svelte-kit/output/server/entries/pages/sharing/index.svelte.js                       5.02 KiB
docker-immich-web-1               | .svelte-kit/output/server/immutable/chunks/index-b4270eaf.js                          4.88 KiB
docker-immich-web-1               | .svelte-kit/output/server/immutable/chunks/api-40614546.js                            62.77 KiB
docker-immich-web-1               | .svelte-kit/output/server/immutable/chunks/assets-3d7cf3ae.js                         4.23 KiB
docker-immich-web-1               | .svelte-kit/output/server/immutable/chunks/status-box-56bd79d6.js                     12.71 KiB
docker-immich-web-1               | .svelte-kit/output/server/immutable/chunks/stores-e0f09a49.js                         0.63 KiB
docker-immich-web-1               | .svelte-kit/output/server/immutable/chunks/circle-icon-button-8724bfed.js             3.13 KiB
docker-immich-web-1               | .svelte-kit/output/server/immutable/chunks/immich-thumbnail-a78d6a27.js               7.75 KiB
docker-immich-web-1               | .svelte-kit/output/server/immutable/chunks/side-bar-53712456.js                       4.04 KiB
docker-immich-web-1               | .svelte-kit/output/server/immutable/chunks/PlusBoxOutline-834f914d.js                 1.21 KiB
docker-immich-web-1               | .svelte-kit/output/server/immutable/chunks/hooks-3e69fd6c.js                          0.75 KiB
docker-immich-web-1               | (node:18) ExperimentalWarning: buffer.Blob is an experimental feature. This feature could change at any time
docker-immich-web-1               | (Use `node --trace-warnings ...` to show where the warning was created)
docker-immich-web-1               | 
docker-immich-web-1               | Run npm run preview to preview your production build locally.
docker-immich-web-1               | 
docker-immich-web-1               | > Using @sveltejs/adapter-node
docker-immich-web-1               |   ✔ done
docker-immich-web-1               | Listening on 0.0.0.0:3000
@basings commented on GitHub (Jul 30, 2022): nothing too serious, I guess. - `Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf ` - `WARNING overcommit_memory is set to 0! Background save may fail under low memory condition.` ```` $ sudo docker-compose -f ./docker/docker-compose.yml up [+] Running 7/0 ⠿ Container immich_redis Created 0.0s ⠿ Container docker-immich-web-1 Created 0.0s ⠿ Container immich_postgres Created 0.0s ⠿ Container docker-immich-server-1 Created 0.0s ⠿ Container docker-immich-machine-learning-1 Created 0.0s ⠿ Container docker-immich-microservices-1 Created 0.0s ⠿ Container immich_proxy Created 0.0s Attaching to docker-immich-machine-learning-1, docker-immich-microservices-1, docker-immich-server-1, docker-immich-web-1, immich_postgres, immich_proxy, immich_redis immich_redis | 1:C 30 Jul 2022 14:44:54.680 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo immich_redis | 1:C 30 Jul 2022 14:44:54.680 # Redis version=6.2.7, bits=64, commit=00000000, modified=0, pid=1, just started immich_redis | 1:C 30 Jul 2022 14:44:54.680 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf immich_redis | 1:M 30 Jul 2022 14:44:54.681 * monotonic clock: POSIX clock_gettime immich_redis | 1:M 30 Jul 2022 14:44:54.681 # A key '__redis__compare_helper' was added to Lua globals which is not on the globals allow list nor listed on the deny list. immich_redis | 1:M 30 Jul 2022 14:44:54.681 * Running mode=standalone, port=6379. immich_redis | 1:M 30 Jul 2022 14:44:54.681 # Server initialized immich_redis | 1:M 30 Jul 2022 14:44:54.681 # WARNING overcommit_memory is set to 0! Background save may fail under low memory condition. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sysctl vm.overcommit_memory=1' for this to take effect. immich_redis | 1:M 30 Jul 2022 14:44:54.682 * Loading RDB produced by version 6.2.7 immich_redis | 1:M 30 Jul 2022 14:44:54.682 * RDB age 19 seconds immich_redis | 1:M 30 Jul 2022 14:44:54.682 * RDB memory usage when created 0.78 Mb immich_redis | 1:M 30 Jul 2022 14:44:54.682 # Done loading RDB, keys loaded: 0, keys expired: 5. immich_redis | 1:M 30 Jul 2022 14:44:54.682 * DB loaded from disk: 0.000 seconds immich_redis | 1:M 30 Jul 2022 14:44:54.682 * Ready to accept connections immich_postgres | immich_postgres | PostgreSQL Database directory appears to contain a database; Skipping initialization immich_postgres | immich_postgres | 2022-07-30 14:44:54.779 UTC [1] LOG: starting PostgreSQL 14.4 (Debian 14.4-1.pgdg110+1) on x86_64-pc-linux-gnu, compiled by gcc (Debian 10.2.1-6) 10.2.1 20210110, 64-bit immich_postgres | 2022-07-30 14:44:54.780 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432 immich_postgres | 2022-07-30 14:44:54.780 UTC [1] LOG: listening on IPv6 address "::", port 5432 immich_postgres | 2022-07-30 14:44:54.783 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" immich_postgres | 2022-07-30 14:44:54.789 UTC [26] LOG: database system was shut down at 2022-07-30 14:44:35 UTC immich_postgres | 2022-07-30 14:44:54.793 UTC [1] LOG: database system is ready to accept connections docker-immich-web-1 | docker-immich-web-1 | > immich-web@1.0.0 build docker-immich-web-1 | > vite build docker-immich-web-1 | docker-immich-machine-learning-1 | docker-immich-machine-learning-1 | > nest_microservices@0.0.1 prebuild docker-immich-machine-learning-1 | > rimraf dist docker-immich-machine-learning-1 | docker-immich-machine-learning-1 | docker-immich-machine-learning-1 | > nest_microservices@0.0.1 build docker-immich-machine-learning-1 | > nest build docker-immich-machine-learning-1 | docker-immich-web-1 | vite v3.0.0 building for production... docker-immich-web-1 | transforming... immich_proxy | /docker-entrypoint.sh: /docker-entrypoint.d/ is not empty, will attempt to perform configuration immich_proxy | /docker-entrypoint.sh: Looking for shell scripts in /docker-entrypoint.d/ immich_proxy | /docker-entrypoint.sh: Launching /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh immich_proxy | 10-listen-on-ipv6-by-default.sh: info: Getting the checksum of /etc/nginx/conf.d/default.conf immich_proxy | 10-listen-on-ipv6-by-default.sh: info: /etc/nginx/conf.d/default.conf differs from the packaged version immich_proxy | /docker-entrypoint.sh: Launching /docker-entrypoint.d/20-envsubst-on-templates.sh immich_proxy | /docker-entrypoint.sh: Launching /docker-entrypoint.d/30-tune-worker-processes.sh immich_proxy | /docker-entrypoint.sh: Configuration complete; ready for start up immich_proxy | 2022/07/30 14:44:56 [notice] 1#1: using the "epoll" event method immich_proxy | 2022/07/30 14:44:56 [notice] 1#1: nginx/1.23.1 immich_proxy | 2022/07/30 14:44:56 [notice] 1#1: built by gcc 10.2.1 20210110 (Debian 10.2.1-6) immich_proxy | 2022/07/30 14:44:56 [notice] 1#1: OS: Linux 5.18.12-arch1-1 immich_proxy | 2022/07/30 14:44:56 [notice] 1#1: getrlimit(RLIMIT_NOFILE): 1048576:1048576 immich_proxy | 2022/07/30 14:44:56 [notice] 1#1: start worker processes immich_proxy | 2022/07/30 14:44:56 [notice] 1#1: start worker process 29 immich_proxy | 2022/07/30 14:44:56 [notice] 1#1: start worker process 30 immich_proxy | 2022/07/30 14:44:56 [notice] 1#1: start worker process 31 immich_proxy | 2022/07/30 14:44:56 [notice] 1#1: start worker process 32 docker-immich-microservices-1 | [Nest] 6 - 07/30/2022, 2:44:57 PM LOG [NestFactory] Starting Nest application... docker-immich-microservices-1 | [Nest] 6 - 07/30/2022, 2:44:57 PM LOG [InstanceLoader] DatabaseModule dependencies initialized +103ms docker-immich-microservices-1 | [Nest] 6 - 07/30/2022, 2:44:57 PM LOG [InstanceLoader] TypeOrmModule dependencies initialized +1ms docker-immich-microservices-1 | [Nest] 6 - 07/30/2022, 2:44:57 PM LOG [InstanceLoader] BullModule dependencies initialized +0ms docker-immich-microservices-1 | [Nest] 6 - 07/30/2022, 2:44:57 PM LOG [InstanceLoader] JwtModule dependencies initialized +1ms docker-immich-microservices-1 | [Nest] 6 - 07/30/2022, 2:44:57 PM LOG [InstanceLoader] DiscoveryModule dependencies initialized +1ms docker-immich-microservices-1 | [Nest] 6 - 07/30/2022, 2:44:57 PM LOG [InstanceLoader] BullModule dependencies initialized +12ms docker-immich-microservices-1 | [Nest] 6 - 07/30/2022, 2:44:57 PM LOG [InstanceLoader] BullModule dependencies initialized +1ms docker-immich-microservices-1 | [Nest] 6 - 07/30/2022, 2:44:57 PM LOG [InstanceLoader] BullModule dependencies initialized +1ms docker-immich-microservices-1 | [Nest] 6 - 07/30/2022, 2:44:57 PM LOG [InstanceLoader] BullModule dependencies initialized +1ms docker-immich-microservices-1 | [Nest] 6 - 07/30/2022, 2:44:57 PM LOG [InstanceLoader] BullModule dependencies initialized +0ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:58 PM LOG [NestFactory] Starting Nest application... docker-immich-microservices-1 | [Nest] 6 - 07/30/2022, 2:44:58 PM LOG [InstanceLoader] TypeOrmCoreModule dependencies initialized +349ms docker-immich-microservices-1 | [Nest] 6 - 07/30/2022, 2:44:58 PM LOG [InstanceLoader] TypeOrmModule dependencies initialized +0ms docker-immich-microservices-1 | [Nest] 6 - 07/30/2022, 2:44:58 PM LOG [InstanceLoader] TypeOrmModule dependencies initialized +1ms docker-immich-microservices-1 | [Nest] 6 - 07/30/2022, 2:44:58 PM LOG [InstanceLoader] ImmichJwtModule dependencies initialized +2ms docker-immich-microservices-1 | [Nest] 6 - 07/30/2022, 2:44:58 PM LOG [InstanceLoader] CommunicationModule dependencies initialized +0ms docker-immich-microservices-1 | [Nest] 6 - 07/30/2022, 2:44:58 PM LOG [InstanceLoader] MicroservicesModule dependencies initialized +1ms docker-immich-microservices-1 | [Nest] 6 - 07/30/2022, 2:44:58 PM LOG [NestApplication] Nest application successfully started +37ms docker-immich-microservices-1 | [Nest] 6 - 07/30/2022, 2:44:58 PM LOG [ImmichMicroservice] Running Immich Microservices in PRODUCTION environment docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:58 PM LOG [InstanceLoader] DatabaseModule dependencies initialized +208ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:58 PM LOG [InstanceLoader] TypeOrmModule dependencies initialized +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:58 PM LOG [InstanceLoader] BullModule dependencies initialized +0ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:58 PM LOG [InstanceLoader] JwtModule dependencies initialized +2ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:58 PM LOG [InstanceLoader] AppModule dependencies initialized +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:58 PM LOG [InstanceLoader] ConfigHostModule dependencies initialized +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:58 PM LOG [InstanceLoader] DiscoveryModule dependencies initialized +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:58 PM LOG [InstanceLoader] ServerInfoModule dependencies initialized +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:58 PM LOG [InstanceLoader] ConfigModule dependencies initialized +11ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:58 PM LOG [InstanceLoader] ScheduleModule dependencies initialized +2ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:58 PM LOG [InstanceLoader] BullModule dependencies initialized +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:58 PM LOG [InstanceLoader] BullModule dependencies initialized +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:58 PM LOG [InstanceLoader] BullModule dependencies initialized +2ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:58 PM LOG [InstanceLoader] BullModule dependencies initialized +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:58 PM LOG [InstanceLoader] BullModule dependencies initialized +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:58 PM LOG [InstanceLoader] BullModule dependencies initialized +0ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:58 PM LOG [InstanceLoader] TypeOrmCoreModule dependencies initialized +265ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:58 PM LOG [InstanceLoader] TypeOrmModule dependencies initialized +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:58 PM LOG [InstanceLoader] TypeOrmModule dependencies initialized +0ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:58 PM LOG [InstanceLoader] TypeOrmModule dependencies initialized +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:58 PM LOG [InstanceLoader] TypeOrmModule dependencies initialized +0ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:58 PM LOG [InstanceLoader] TypeOrmModule dependencies initialized +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:58 PM LOG [InstanceLoader] TypeOrmModule dependencies initialized +0ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:58 PM LOG [InstanceLoader] CommunicationModule dependencies initialized +2ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:58 PM LOG [InstanceLoader] ImmichJwtModule dependencies initialized +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:58 PM LOG [InstanceLoader] BackgroundTaskModule dependencies initialized +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:58 PM LOG [InstanceLoader] ScheduleTasksModule dependencies initialized +0ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:58 PM LOG [InstanceLoader] DeviceInfoModule dependencies initialized +5ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:58 PM LOG [InstanceLoader] AuthModule dependencies initialized +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:58 PM LOG [InstanceLoader] AlbumModule dependencies initialized +0ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:58 PM LOG [InstanceLoader] UserModule dependencies initialized +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:58 PM LOG [InstanceLoader] AssetModule dependencies initialized +0ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RoutesResolver] AppController {/}: +459ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RoutesResolver] UserController {/user}: +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/user, GET} route +3ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/user/info/:userId, GET} route +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/user/me, GET} route +2ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/user, POST} route +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/user/count, GET} route +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/user, PUT} route +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/user/profile-image, POST} route +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/user/profile-image/:userId, GET} route +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RoutesResolver] AssetController {/asset}: +0ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/asset/upload, POST} route +2ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/asset/download, GET} route +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/asset/file, GET} route +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/asset/thumbnail/:assetId, GET} route +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/asset/allObjects, GET} route +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/asset/allLocation, GET} route +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/asset/searchTerm, GET} route +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/asset/search, POST} route +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/asset, GET} route +0ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/asset/:deviceId, GET} route +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/asset/assetById/:assetId, GET} route +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/asset, DELETE} route +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/asset/check, POST} route +2ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RoutesResolver] AuthController {/auth}: +0ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/auth/login, POST} route +2ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/auth/admin-sign-up, POST} route +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/auth/validateToken, POST} route +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/auth/logout, POST} route +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RoutesResolver] DeviceInfoController {/device-info}: +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/device-info, POST} route +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/device-info, PATCH} route +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RoutesResolver] ServerInfoController {/server-info}: +0ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/server-info, GET} route +2ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/server-info/ping, GET} route +0ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/server-info/version, GET} route +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RoutesResolver] AlbumController {/album}: +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/album, POST} route +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/album/:albumId/users, PUT} route +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/album/:albumId/assets, PUT} route +0ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/album, GET} route +2ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/album/:albumId, GET} route +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/album/:albumId/assets, DELETE} route +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/album/:albumId, DELETE} route +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/album/:albumId/user/:userId, DELETE} route +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [RouterExplorer] Mapped {/album/:albumId, PATCH} route +1ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [NestApplication] Nest application successfully started +47ms docker-immich-server-1 | [Nest] 7 - 07/30/2022, 2:44:59 PM LOG [ImmichServer] Running Immich Server in PRODUCTION environment docker-immich-machine-learning-1 | docker-immich-machine-learning-1 | > nest_microservices@0.0.1 start:prod docker-immich-machine-learning-1 | > node dist/main docker-immich-machine-learning-1 | docker-immich-machine-learning-1 | 2022-07-30 14:45:04.187189: I tensorflow/core/platform/cpu_feature_guard.cc:151] This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDNN) to use the following CPU instructions in performance-critical operations: AVX2 FMA docker-immich-machine-learning-1 | To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags. docker-immich-machine-learning-1 | [Nest] 53 - 07/30/2022, 2:45:04 PM LOG [NestFactory] Starting Nest application... docker-immich-machine-learning-1 | [Nest] 53 - 07/30/2022, 2:45:04 PM LOG [ImageClassifier] Running Node TensorFlow Version : 3.19.0 docker-immich-machine-learning-1 | [Nest] 53 - 07/30/2022, 2:45:04 PM LOG [ObjectDetection] Running Node TensorFlow Version : 3.19.0 docker-immich-machine-learning-1 | [Nest] 53 - 07/30/2022, 2:45:04 PM LOG [InstanceLoader] AppModule dependencies initialized +3ms docker-immich-machine-learning-1 | [Nest] 53 - 07/30/2022, 2:45:04 PM LOG [InstanceLoader] TypeOrmModule dependencies initialized +1ms docker-immich-machine-learning-1 | [Nest] 53 - 07/30/2022, 2:45:04 PM LOG [InstanceLoader] ImageClassifierModule dependencies initialized +0ms docker-immich-machine-learning-1 | [Nest] 53 - 07/30/2022, 2:45:04 PM LOG [InstanceLoader] ObjectDetectionModule dependencies initialized +0ms docker-immich-machine-learning-1 | [Nest] 53 - 07/30/2022, 2:45:04 PM LOG [InstanceLoader] TypeOrmCoreModule dependencies initialized +67ms docker-immich-machine-learning-1 | [Nest] 53 - 07/30/2022, 2:45:04 PM LOG [RoutesResolver] ImageClassifierController {/image-classifier}: +5ms docker-immich-machine-learning-1 | [Nest] 53 - 07/30/2022, 2:45:04 PM LOG [RouterExplorer] Mapped {/image-classifier/tag-image, POST} route +2ms docker-immich-machine-learning-1 | [Nest] 53 - 07/30/2022, 2:45:04 PM LOG [RoutesResolver] ObjectDetectionController {/object-detection}: +0ms docker-immich-machine-learning-1 | [Nest] 53 - 07/30/2022, 2:45:04 PM LOG [RouterExplorer] Mapped {/object-detection/detect-object, POST} route +1ms docker-immich-machine-learning-1 | [Nest] 53 - 07/30/2022, 2:45:04 PM LOG [NestApplication] Nest application successfully started +3ms docker-immich-machine-learning-1 | [Nest] 53 - 07/30/2022, 2:45:04 PM LOG [IMMICH MICROSERVICES] Running Immich Machine Learning in PRODUCTION environment docker-immich-web-1 | ✓ 812 modules transformed. docker-immich-web-1 | rendering chunks... docker-immich-web-1 | .svelte-kit/output/client/_app/manifest.json 10.57 KiB docker-immich-web-1 | .svelte-kit/output/client/_app/immutable/start-1daf651d.js 27.91 KiB / gzip: 9.15 KiB docker-immich-web-1 | .svelte-kit/output/client/_app/immutable/error.svelte-7be623ed.js 1.56 KiB / gzip: 0.75 KiB docker-immich-web-1 | .svelte-kit/output/client/_app/immutable/pages/albums/_albumId_/photos/_assetId_.svelte-7e038145.js 0.44 KiB / gzip: 0.30 KiB docker-immich-web-1 | .svelte-kit/output/client/_app/immutable/pages/__layout.svelte-2ebbe01b.js 21.05 KiB / gzip: 7.61 KiB docker-immich-web-1 | .svelte-kit/output/client/_app/immutable/pages/admin/index.svelte-d4b52d25.js 15.66 KiB / gzip: 5.74 KiB docker-immich-web-1 | .svelte-kit/output/client/_app/immutable/pages/albums/index.svelte-1d6cb4de.js 11.84 KiB / gzip: 4.78 KiB docker-immich-web-1 | .svelte-kit/output/client/_app/immutable/pages/auth/change-password/index.svelte-3fd703bd.js 6.57 KiB / gzip: 2.79 KiB docker-immich-web-1 | .svelte-kit/output/client/_app/immutable/pages/auth/login/index.svelte-223cbe36.js 4.59 KiB / gzip: 2.04 KiB docker-immich-web-1 | .svelte-kit/output/client/_app/immutable/pages/auth/register/index.svelte-e6295d1b.js 7.40 KiB / gzip: 2.88 KiB docker-immich-web-1 | .svelte-kit/output/client/_app/immutable/pages/index.svelte-507c3918.js 2.35 KiB / gzip: 1.19 KiB docker-immich-web-1 | .svelte-kit/output/client/_app/immutable/pages/photos/_assetId_.svelte-6e616e48.js 0.37 KiB / gzip: 0.26 KiB docker-immich-web-1 | .svelte-kit/output/client/_app/immutable/pages/photos/index.svelte-7f912687.js 6.98 KiB / gzip: 3.07 KiB docker-immich-web-1 | .svelte-kit/output/client/_app/immutable/pages/sharing/index.svelte-82402c63.js 9.10 KiB / gzip: 3.70 KiB docker-immich-web-1 | .svelte-kit/output/client/_app/immutable/chunks/index-cdc8ee48.js 0.79 KiB / gzip: 0.49 KiB docker-immich-web-1 | .svelte-kit/output/client/_app/immutable/chunks/singletons-cdeec3fd.js 0.05 KiB / gzip: 0.07 KiB docker-immich-web-1 | .svelte-kit/output/client/_app/immutable/chunks/preload-helper-4c397a37.js 0.69 KiB / gzip: 0.43 KiB docker-immich-web-1 | .svelte-kit/output/client/_app/immutable/chunks/index-7b960913.js 1.48 KiB / gzip: 0.59 KiB docker-immich-web-1 | .svelte-kit/output/client/_app/immutable/chunks/navigation-bcb9efb9.js 0.19 KiB / gzip: 0.15 KiB docker-immich-web-1 | .svelte-kit/output/client/_app/immutable/chunks/index-73abe660.js 13.28 KiB / gzip: 5.58 KiB docker-immich-web-1 | .svelte-kit/output/client/_app/immutable/chunks/full-screen-modal-522218aa.js 1.22 KiB / gzip: 0.75 KiB docker-immich-web-1 | .svelte-kit/output/client/_app/immutable/chunks/click-outside-d61b158d.js 0.21 KiB / gzip: 0.16 KiB docker-immich-web-1 | .svelte-kit/output/client/_app/immutable/chunks/loading-spinner-5cb482b5.js 2.15 KiB / gzip: 1.17 KiB docker-immich-web-1 | .svelte-kit/output/client/_app/immutable/chunks/circle-icon-button-5b8466fc.js 1.79 KiB / gzip: 1.00 KiB docker-immich-web-1 | .svelte-kit/output/client/_app/immutable/chunks/DeleteOutline-3eb12843.js 4.92 KiB / gzip: 1.94 KiB docker-immich-web-1 | .svelte-kit/output/client/_app/immutable/chunks/ImageOutline-431d3d1f.js 1.08 KiB / gzip: 0.62 KiB docker-immich-web-1 | .svelte-kit/output/client/_app/immutable/chunks/side-bar-9e07545d.js 3.79 KiB / gzip: 1.65 KiB docker-immich-web-1 | .svelte-kit/output/client/_app/immutable/chunks/PlusBoxOutline-6c8c4589.js 1.07 KiB / gzip: 0.61 KiB docker-immich-web-1 | .svelte-kit/output/client/_app/immutable/chunks/api-ac2cea2c.js 41.44 KiB / gzip: 10.57 KiB docker-immich-web-1 | .svelte-kit/output/client/_app/immutable/assets/file-uploader-b81acd7f.css 0.21 KiB / gzip: 0.18 KiB docker-immich-web-1 | .svelte-kit/output/client/_app/immutable/assets/circle-icon-button-3e5300b3.css 0.16 KiB / gzip: 0.12 KiB docker-immich-web-1 | .svelte-kit/output/client/_app/immutable/assets/__layout-cb95c790.css 22.89 KiB / gzip: 4.94 KiB docker-immich-web-1 | .svelte-kit/output/client/_app/immutable/chunks/status-box-3ddee11a.js 20.68 KiB / gzip: 6.64 KiB docker-immich-web-1 | .svelte-kit/output/client/_app/immutable/pages/albums/_albumId_/index.svelte-b6a52195.js 56.52 KiB / gzip: 16.30 KiB docker-immich-web-1 | .svelte-kit/output/client/_app/immutable/chunks/leaflet-src-47401280.js 142.58 KiB / gzip: 41.34 KiB docker-immich-web-1 | .svelte-kit/output/client/_app/immutable/chunks/file-uploader-866bb504.js 121.13 KiB / gzip: 38.35 KiB docker-immich-web-1 | .svelte-kit/output/client/_app/immutable/chunks/assets-4d53dcd0.js 218.21 KiB / gzip: 75.59 KiB docker-immich-web-1 | vite v3.0.0 building SSR bundle for production... docker-immich-web-1 | transforming... docker-immich-web-1 | ✓ 113 modules transformed. docker-immich-web-1 | rendering chunks... docker-immich-web-1 | .svelte-kit/output/server/manifest.json 6.15 KiB docker-immich-web-1 | .svelte-kit/output/server/index.js 76.18 KiB docker-immich-web-1 | .svelte-kit/output/server/entries/endpoints/auth/logout.ts.js 0.43 KiB docker-immich-web-1 | .svelte-kit/output/server/entries/pages/__layout.svelte.js 7.45 KiB docker-immich-web-1 | .svelte-kit/output/server/entries/fallbacks/error.svelte.js 0.74 KiB docker-immich-web-1 | .svelte-kit/output/server/entries/pages/admin/index.svelte.js 5.37 KiB docker-immich-web-1 | .svelte-kit/output/server/entries/pages/albums/_albumId_/index.svelte.js 16.74 KiB docker-immich-web-1 | .svelte-kit/output/server/entries/pages/albums/_albumId_/photos/_assetId_.svelte.js 0.71 KiB docker-immich-web-1 | .svelte-kit/output/server/entries/pages/albums/index.svelte.js 5.09 KiB docker-immich-web-1 | .svelte-kit/output/server/entries/pages/auth/change-password/index.svelte.js 3.17 KiB docker-immich-web-1 | .svelte-kit/output/server/entries/pages/auth/login/index.svelte.js 1.90 KiB docker-immich-web-1 | .svelte-kit/output/server/entries/pages/auth/register/index.svelte.js 3.29 KiB docker-immich-web-1 | .svelte-kit/output/server/entries/pages/index.svelte.js 1.64 KiB docker-immich-web-1 | .svelte-kit/output/server/entries/pages/photos/_assetId_.svelte.js 0.55 KiB docker-immich-web-1 | .svelte-kit/output/server/entries/pages/photos/index.svelte.js 3.22 KiB docker-immich-web-1 | .svelte-kit/output/server/entries/pages/sharing/index.svelte.js 5.02 KiB docker-immich-web-1 | .svelte-kit/output/server/immutable/chunks/index-b4270eaf.js 4.88 KiB docker-immich-web-1 | .svelte-kit/output/server/immutable/chunks/api-40614546.js 62.77 KiB docker-immich-web-1 | .svelte-kit/output/server/immutable/chunks/assets-3d7cf3ae.js 4.23 KiB docker-immich-web-1 | .svelte-kit/output/server/immutable/chunks/status-box-56bd79d6.js 12.71 KiB docker-immich-web-1 | .svelte-kit/output/server/immutable/chunks/stores-e0f09a49.js 0.63 KiB docker-immich-web-1 | .svelte-kit/output/server/immutable/chunks/circle-icon-button-8724bfed.js 3.13 KiB docker-immich-web-1 | .svelte-kit/output/server/immutable/chunks/immich-thumbnail-a78d6a27.js 7.75 KiB docker-immich-web-1 | .svelte-kit/output/server/immutable/chunks/side-bar-53712456.js 4.04 KiB docker-immich-web-1 | .svelte-kit/output/server/immutable/chunks/PlusBoxOutline-834f914d.js 1.21 KiB docker-immich-web-1 | .svelte-kit/output/server/immutable/chunks/hooks-3e69fd6c.js 0.75 KiB docker-immich-web-1 | (node:18) ExperimentalWarning: buffer.Blob is an experimental feature. This feature could change at any time docker-immich-web-1 | (Use `node --trace-warnings ...` to show where the warning was created) docker-immich-web-1 | docker-immich-web-1 | Run npm run preview to preview your production build locally. docker-immich-web-1 | docker-immich-web-1 | > Using @sveltejs/adapter-node docker-immich-web-1 | ✔ done docker-immich-web-1 | Listening on 0.0.0.0:3000 ````
Author
Owner

@alextran1502 commented on GitHub (Jul 30, 2022):

Are you still facing the issue after restarting the services? Can you open the network tab on your browser and enter the site, then capture the screenshot for me?

image

@alextran1502 commented on GitHub (Jul 30, 2022): Are you still facing the issue after restarting the services? Can you open the network tab on your browser and enter the site, then capture the screenshot for me? ![image](https://user-images.githubusercontent.com/27055614/181919898-4c616c8e-70ce-4dfa-a45a-8fcbb3eab088.png)
Author
Owner

@basings commented on GitHub (Jul 30, 2022):

response of http://192.168.178.83:2283/api
Screenshot from 2022-07-30 17-02-54

response of http://192.168.178.83:2283
Screenshot from 2022-07-30 17-04-16

http://192.168.178.83:2283/photos redirects to http://192.168.178.83:2283/auth/login and I get a login screen!!!

@basings commented on GitHub (Jul 30, 2022): response of `http://192.168.178.83:2283/api` ![Screenshot from 2022-07-30 17-02-54](https://user-images.githubusercontent.com/92867705/181920320-fdb520ec-7361-40ba-90f3-2283d814f375.png) response of `http://192.168.178.83:2283` ![Screenshot from 2022-07-30 17-04-16](https://user-images.githubusercontent.com/92867705/181920323-68e72835-3baf-4013-8060-8c714fde4795.png) `http://192.168.178.83:2283/photos` redirects to `http://192.168.178.83:2283/auth/login` and I get a login screen!!!
Author
Owner

@basings commented on GitHub (Jul 30, 2022):

is there another way to create a user?

@basings commented on GitHub (Jul 30, 2022): is there another way to create a user?
Author
Owner

@alextran1502 commented on GitHub (Jul 30, 2022):

The response on /api is expected. I see you get 500 responses on just / which is weird.

I think you can try to access directly to /auth/register

@alextran1502 commented on GitHub (Jul 30, 2022): The response on `/api` is expected. I see you get 500 responses on just `/` which is weird. I think you can try to access directly to `/auth/register`
Author
Owner

@basings commented on GitHub (Jul 30, 2022):

no ...

500

Converting circular structure to JSON
    --> starting at object with constructor 'Socket'
    |     property '_httpMessage' -> object with constructor 'ClientRequest'
    --- property 'socket' closes the circle

TypeError: Converting circular structure to JSON
    --> starting at object with constructor 'Socket'
    |     property '_httpMessage' -> object with constructor 'ClientRequest'
    --- property 'socket' closes the circle
@basings commented on GitHub (Jul 30, 2022): no ... ```` 500 Converting circular structure to JSON --> starting at object with constructor 'Socket' | property '_httpMessage' -> object with constructor 'ClientRequest' --- property 'socket' closes the circle TypeError: Converting circular structure to JSON --> starting at object with constructor 'Socket' | property '_httpMessage' -> object with constructor 'ClientRequest' --- property 'socket' closes the circle ````
Author
Owner

@alextran1502 commented on GitHub (Jul 30, 2022):

Another issue with Firefox I just discovered is that if you access it locally without HTTPS, it will not play video, probably due to some security blocking issue on Firefox.

@alextran1502 commented on GitHub (Jul 30, 2022): Another issue with Firefox I just discovered is that if you access it locally without HTTPS, it will not play video, probably due to some security blocking issue on Firefox.
Author
Owner

@alextran1502 commented on GitHub (Jul 30, 2022):

what is the response of /api/server-info/version?

@alextran1502 commented on GitHub (Jul 30, 2022): what is the response of `/api/server-info/version`?
Author
Owner

@basings commented on GitHub (Jul 30, 2022):

major: 1 ; minor: 19 ; patch: 0 ; build: 0

@basings commented on GitHub (Jul 30, 2022): `major: 1 ; minor: 19 ; patch: 0 ; build: 0`
Author
Owner

@alextran1502 commented on GitHub (Jul 30, 2022):

Do you have /api on your VITE_SERVER_ENDPONT in .env file?

@alextran1502 commented on GitHub (Jul 30, 2022): Do you have /api on your `VITE_SERVER_ENDPONT` in .env file?
Author
Owner

@basings commented on GitHub (Jul 30, 2022):

Yes

@basings commented on GitHub (Jul 30, 2022): Yes
Author
Owner

@alextran1502 commented on GitHub (Jul 30, 2022):

so it is http://192.168.178.83:2283/api?

@alextran1502 commented on GitHub (Jul 30, 2022): so it is `http://192.168.178.83:2283/api`?
Author
Owner

@basings commented on GitHub (Jul 30, 2022):

it was localhost. I changed it to http://192.168.178.83:2283/api again. Made no difference in my testings, no idea why I left it there.

Now 192.168.178.83:2283/auth/register times out. auth/login works ; /api -> 404 ; /photos times out instead of redirect. api/user/count works

immich_proxy                      | 2022/07/30 15:17:42 [error] 31#31: *7 upstream timed out (110: Connection timed out) while reading response header from upstream, client: 192.168.178.83, server: , request: "GET /auth/register HTTP/1.1", upstream: "http://172.23.0.4:3000/auth/register", host: "192.168.178.83:2283"
docker-immich-web-1               | Error: connect ETIMEDOUT 192.168.178.83:2283
docker-immich-web-1               |     at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16)
docker-immich-web-1               | TypeError: Converting circular structure to JSON
docker-immich-web-1               |     --> starting at object with constructor 'Socket'
docker-immich-web-1               |     |     property '_httpMessage' -> object with constructor 'ClientRequest'
docker-immich-web-1               |     --- property 'socket' closes the circle
docker-immich-web-1               |     at JSON.stringify (<anonymous>)
docker-immich-web-1               |     at serialize_error (file:///usr/src/app/build/server/index.js:134:15)
docker-immich-web-1               |     at render_response (file:///usr/src/app/build/server/index.js:982:24)
docker-immich-web-1               |     at processTicksAndRejections (node:internal/process/task_queues:96:5)
docker-immich-web-1               |     at async respond$1 (file:///usr/src/app/build/server/index.js:1980:25)
docker-immich-web-1               |     at async resolve (file:///usr/src/app/build/server/index.js:2225:114)
docker-immich-web-1               |     at async Object.handle (file:///usr/src/app/build/server/immutable/chunks/hooks-83e1092e.js:7:12)
docker-immich-web-1               |     at async respond (file:///usr/src/app/build/server/index.js:2180:22)
docker-immich-web-1               |     at async Array.ssr (file:///usr/src/app/build/handler-adb03b02.js:6620:3)
docker-immich-web-1               | Error writing stream Error [ERR_STREAM_DESTROYED]: Cannot call write after a stream was destroyed
docker-immich-web-1               |     at new NodeError (node:internal/errors:372:5)
docker-immich-web-1               |     at write_ (node:_http_outgoing:750:11)
docker-immich-web-1               |     at ServerResponse.write (node:_http_outgoing:707:15)
docker-immich-web-1               |     at next (file:///usr/src/app/build/handler-adb03b02.js:6512:8)
docker-immich-web-1               |     at processTicksAndRejections (node:internal/process/task_queues:96:5) {
docker-immich-web-1               |   code: 'ERR_STREAM_DESTROYED'
docker-immich-web-1               | }
@basings commented on GitHub (Jul 30, 2022): it was localhost. I changed it to `http://192.168.178.83:2283/api` again. Made no difference in my testings, no idea why I left it there. Now `192.168.178.83:2283/auth/register` times out. auth/login works ; /api -> 404 ; /photos times out instead of redirect. api/user/count works ```` immich_proxy | 2022/07/30 15:17:42 [error] 31#31: *7 upstream timed out (110: Connection timed out) while reading response header from upstream, client: 192.168.178.83, server: , request: "GET /auth/register HTTP/1.1", upstream: "http://172.23.0.4:3000/auth/register", host: "192.168.178.83:2283" docker-immich-web-1 | Error: connect ETIMEDOUT 192.168.178.83:2283 docker-immich-web-1 | at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) docker-immich-web-1 | TypeError: Converting circular structure to JSON docker-immich-web-1 | --> starting at object with constructor 'Socket' docker-immich-web-1 | | property '_httpMessage' -> object with constructor 'ClientRequest' docker-immich-web-1 | --- property 'socket' closes the circle docker-immich-web-1 | at JSON.stringify (<anonymous>) docker-immich-web-1 | at serialize_error (file:///usr/src/app/build/server/index.js:134:15) docker-immich-web-1 | at render_response (file:///usr/src/app/build/server/index.js:982:24) docker-immich-web-1 | at processTicksAndRejections (node:internal/process/task_queues:96:5) docker-immich-web-1 | at async respond$1 (file:///usr/src/app/build/server/index.js:1980:25) docker-immich-web-1 | at async resolve (file:///usr/src/app/build/server/index.js:2225:114) docker-immich-web-1 | at async Object.handle (file:///usr/src/app/build/server/immutable/chunks/hooks-83e1092e.js:7:12) docker-immich-web-1 | at async respond (file:///usr/src/app/build/server/index.js:2180:22) docker-immich-web-1 | at async Array.ssr (file:///usr/src/app/build/handler-adb03b02.js:6620:3) docker-immich-web-1 | Error writing stream Error [ERR_STREAM_DESTROYED]: Cannot call write after a stream was destroyed docker-immich-web-1 | at new NodeError (node:internal/errors:372:5) docker-immich-web-1 | at write_ (node:_http_outgoing:750:11) docker-immich-web-1 | at ServerResponse.write (node:_http_outgoing:707:15) docker-immich-web-1 | at next (file:///usr/src/app/build/handler-adb03b02.js:6512:8) docker-immich-web-1 | at processTicksAndRejections (node:internal/process/task_queues:96:5) { docker-immich-web-1 | code: 'ERR_STREAM_DESTROYED' docker-immich-web-1 | } ````
Author
Owner

@alextran1502 commented on GitHub (Jul 30, 2022):

Ok, so the value needs to be an IP address.

  1. Make sure VITE_SERVER_ENDPOINT=http://192.168.178.83:2283/api
  2. Restart Immich's container so it registers the change.
  3. Access just http://192.168.178.83:2283 on the web since the server appears to be working fine.
@alextran1502 commented on GitHub (Jul 30, 2022): Ok, so the value needs to be an IP address. 1. Make sure `VITE_SERVER_ENDPOINT=http://192.168.178.83:2283/api` 2. Restart Immich's container so it registers the change. 4. Access just `http://192.168.178.83:2283` on the web since the server appears to be working fine.
Author
Owner

@basings commented on GitHub (Jul 30, 2022):

It times out again

@basings commented on GitHub (Jul 30, 2022): It times out again
Author
Owner

@alextran1502 commented on GitHub (Jul 30, 2022):

Would you mind jumping in here https://discord.gg/bNwkyU8T, it will make it faster

@alextran1502 commented on GitHub (Jul 30, 2022): Would you mind jumping in here https://discord.gg/bNwkyU8T, it will make it faster
Author
Owner

@basings commented on GitHub (Jul 30, 2022):

sudo ufw allow 2283 solves the issue

@basings commented on GitHub (Jul 30, 2022): `sudo ufw allow 2283` solves the issue
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: immich-app/immich#167