Skip to content

Commit 697551d

Browse files
fix port casing
1 parent ab74071 commit 697551d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ start_nginx() {
5050
local port=$(get_port)
5151

5252
printf "${BLUE}Starting NGINX container (${IMAGE_NAME}) on port ${port}...${NC}\n"
53-
docker run --rm --name "${IMAGE_NAME}" -d -p ${PORT}:80 ${FULL_IMAGE_NAME} >/dev/null
53+
docker run --rm --name "${IMAGE_NAME}" -d -p ${port}:80 ${FULL_IMAGE_NAME} >/dev/null
5454
}
5555

5656
stop_nginx() {

0 commit comments

Comments
 (0)