I followed the simple quick start. I start it with docker compose up -d I get:
- Browser to http://localhost:2283/ 'This site can't be reached. Localhost refused to connect'
- Log has no errors, shows listening:
[Nest] 19 - 06/23/2025, 9:11:34 PM LOG [Api:Bootstrap] Immich Server is listening on http://127.0.0.1:2283 [v1.
135.3] [production]
- Guest is NOT listening:
# docker exec -it immich_server ss -tuln | grep 2283
# (nothing)
- Host is listening:
# ss -tuln | grep 2283
tcp LISTEN 0 128 0.0.0.0:2283 0.0.0.0:*
tcp LISTEN 0 128 [::]:2283 [::]:*
I was only getting listening on IPv6, so I added HOST=0.0.0.0 to the docker-compose.yml and IMMICH_HOST=0.0.0.0 to the .env, so now I get IPv4. But still can't connect. (see attached files)
Help please. I tried reading the docs, and I tried asking ChatGPT for help. I don't know what to try next.
(Server running Ubuntu 18.04. Guest running Immich v1.135.3)
.