Skip to content

Commit 5371c76

Browse files
committed
Remove backend container port mapping with host
Exposing a port to the host in no longer necessary since we're now using Docker linking to connect proxy containers with the backend
1 parent 5397ab7 commit 5371c76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ docker rmi -f backend-image &>/dev/null
1313
echo "${cyan}Building a new backend image...${NC}"
1414
docker build -t="backend-image" --force-rm hosts/backend
1515
echo "${cyan}Starting a new backend image...${NC}"
16-
docker run --name backend -d -p 5000:5000 backend-image
16+
docker run --name backend -d backend-image
1717

1818
echo "${cyan}Fetching Lua depedencies...${NC}"
1919
function load_dependency {

0 commit comments

Comments
 (0)