Skip to content

Commit 74906f6

Browse files
committed
fix: frontend service port in Compose.yaml
1 parent 4487f05 commit 74906f6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/actions/deploy/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ inputs:
2323
port:
2424
description: 'Port number for frontend service'
2525
required: true
26-
public-url:
26+
public_url:
2727
description: Public URL where the application is accessible
2828
required: true
2929
aws_region:

Compose.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ services:
66
container_name: ${APP_ENV}-frontend-${GITHUB_RUN_ID}
77
environment:
88
- API_URL=backend:${BACKEND_PORT}
9+
# TODO: check if I need that one in the project ?
10+
- HOSTNAME=frontend:${PORT}
911
restart: unless-stopped
1012
user: runner
1113
ports:
1214
- "127.0.0.1:${PORT}:${PORT}"
13-
# TODO: check if I need that one in the project ?
14-
- HOSTNAME=frontend:${PORT}
1515
networks:
1616
- ${APP_ENV}-frontend-network
1717
cap_drop:

0 commit comments

Comments
 (0)