Skip to content

Commit

Permalink
fix: use 8082 in local dev
Browse files Browse the repository at this point in the history
  • Loading branch information
jvallesm committed Apr 16, 2024
1 parent 201037f commit 79233ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ K6_VERSION=0.42.0

# service
SERVICE_NAME=artifact-backend
SERVICE_PORT=8085
SERVICE_PORT=8082

# container build
DOCKER_BUILDKIT=1
Expand Down
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ dev: ## Run dev container
echo "Run dev container ${SERVICE_NAME}. To stop it, run \"make stop\"."
@docker run -d --rm \
-v $(PWD):/${SERVICE_NAME} \
-p ${PUBLIC_SERVICE_PORT}:${PUBLIC_SERVICE_PORT} \
-p ${PRIVATE_SERVICE_PORT}:${PRIVATE_SERVICE_PORT} \
-p ${SERVICE_PORT}:${SERVICE_PORT} \
-p ${SERVICE_PORT}:${SERVICE_PORT} \
--network instill-network \
--name ${SERVICE_NAME} \
Expand Down

0 comments on commit 79233ab

Please sign in to comment.