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
- feat(readme) add app store links by @tennox in #689
- fix(mobile): Android BackgroundServiceStartNotAllowedException by @zoodyy in #687
- fix(server): mismatch createdAt value in
exif
table andasset
table by @alextran1502 in #688 - feat(setup): use non-root image for immich-proxy by @PixelJonas in #651
- feat(readme) by @beune in #690
- fix(mobile) cache read write error on iOS 16 by @alextran1502 in #691
- fix(setup): revert nginx image to support arm/v7 by @PixelJonas in #692
New Contributors
- @tennox made their first contribution in #689
- @PixelJonas made their first contribution in #651
- @beune made their first contribution in #690
Full Changelog: v1.28.4_41-dev...v1.29.0_42-dev