mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-15 23:02:03 -05:00
[PR #740] fix: Imgproxy container exposure #5695
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/Dokploy/templates/pull/740
Author: @vladyslavprosolupov
Created: 3/9/2026
Status: 🔄 Open
Base:
canary← Head:canary📝 Commits (1)
8d7fb61fix: Imgproxy container exposure📊 Changes
1 file changed (+2 additions, -0 deletions)
View changed files
📝
blueprints/imgproxy/docker-compose.yml(+2 -0)📄 Description
What is this PR about?
@Siumauricio On fresh dokploy installation imgproxy container exposure was needed. Unfortunately, my previous implementation doesn't work as expected without direct expose in docker-compose.yml.
Checklist
Before submitting this PR, please make sure that:
Greptile Summary
This PR fixes container-to-container communication for the
imgproxyblueprint by adding an explicitexpose: - 8080directive to theimgproxyservice indocker-compose.yml. On fresh Dokploy installations, the platform relies on theexposedeclaration to wire up internal service routing, so without it nginx could not reach imgproxy on port 8080.expose: - 80pattern already present on thenginxservice.8080is imgproxy's default listen port and is already referenced in the nginxproxy_pass http://imgproxy:8080directive, so this is a consistent fix.expose(notports), which is the required convention for this repository per the Docker Compose guidelines.Confidence Score: 5/5
expose: - 8080directive that is already the established pattern for this repository (nginx already hasexpose: - 80), targets the correct default imgproxy port, does not introduceportsor any other prohibited directive, and directly resolves the reported deployment issue on fresh Dokploy installations.Last reviewed commit:
8d7fb61(3/5) Reply to the agent's comments like "Can you suggest a fix for this @greptileai?" or ask follow-up questions!
Context used:
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.