mirror of
https://github.com/niels-emmer/myace.git
synced 2026-09-13 23:53:30 +02:00
[PR #21] [MERGED] fix: move frontend port from base compose to dev compose #21
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
github-mirrors/myace#21
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
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/niels-emmer/myace/pull/21
Author: @niels-emmer
Created: 8/9/2026
Status: ✅ Merged
Merged: 8/9/2026
Merged by: @niels-emmer
Base:
main← Head:fix/compose-port-conflict📝 Commits (1)
4713e91fix: move frontend port from base compose to dev compose📊 Changes
2 files changed (+1 additions, -3 deletions)
View changed files
📝
docker-compose.prod.yml(+1 -1)📝
docker-compose.yml(+0 -2)📄 Description
Summary
Moves the frontend port mapping (
80:80) fromdocker-compose.yml(base) todocker-compose.dev.yml(dev only). The base compose is used as a layer for both dev and prod deployments — having port 80 there causes conflicts on the VPS where another service already binds port 80.Changes
docker-compose.yml: Removedports: ["80:80"]from frontend servicedocker-compose.dev.yml: Already hadports: ["80:80"]— no change neededdocker-compose.prod.yml: Already hadports: []— no change neededTesting
docker compose -f docker-compose.yml -f docker-compose.dev.yml up -dstill exposes port 80docker compose -f docker-compose.yml -f docker-compose.prod.yml up -dno longer conflicts🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.