Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 586780b

Browse files
committed
chore: change the container exposed port to 3000
1 parent f862e6d commit 586780b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

deployment/compose.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ version: '3.3'
22
services:
33
main_service:
44
build:
5-
context: .
6-
dockerfile: dockerfile
5+
context: ../
6+
dockerfile: deployment/dockerfile
77
container_name: mysite
88
ports:
9-
- '6969:3000'
9+
- '3000:3000'
1010
restart: always
1111
deploy:
1212
resources:

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ alias rn:= reincarnate
1010
alias ng:= ngrok
1111

1212
__CONTAINER_PORT := "3000"
13-
EXPOSED_PORT := "6969"
13+
EXPOSED_PORT := "3000"
1414
NGROK_DOMAIN := "saved-duckling-subtle.ngrok-free.app"
1515

1616
@help:

0 commit comments

Comments
 (0)