github immich-app/immich v1.29.0_42-dev

latest releases: v1.116.2, v1.116.1, v1.116.0...
2 years ago

Breaking change

#651 Breaking Change
immich-proxy switched from using port 80 which was used inside of the container to 8080 to drop dependency on a privileged user inside the container. This reduces a potential security risk of someone being able to impersonate that user on the host.

As a result you will need to change your docker-compose.yaml to reflect this change, by changing the port-binding from

  immich-proxy:
    container_name: immich_proxy
    image: altran1502/immich-proxy:release
    ports:
      - 2283:80

to

  immich-proxy:
    container_name: immich_proxy
    image: altran1502/immich-proxy:release
    ports:
      - 2283:8080

a full example of the always-up-to-date docker-compose.yaml can be found in our repo

What's Changed

New Contributors

Full Changelog: v1.28.4_41-dev...v1.29.0_42-dev

Don't miss a new immich release

NewReleases is sending notifications on new releases.