Skip to content

Commit

Permalink
chore: update deploy workflow script to expose nginx metrics port
Browse files Browse the repository at this point in the history
  • Loading branch information
jungwoo3490 committed Dec 3, 2024
1 parent b24965b commit badf6f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Docker Build and Deploy
on:
push:
branches:
- main
- feat/#36_prometheus-grafana

jobs:
build:
Expand Down Expand Up @@ -45,4 +45,4 @@ jobs:
docker stop tinu-client || true
docker rm tinu-client || true
docker pull ${{ secrets.DOCKER_USERNAME }}/tinu-client
docker run -d -p 8080:80 --name tinu-client -v /etc/letsencrypt:/etc/letsencrypt:ro ${{ secrets.DOCKER_USERNAME }}/tinu-client
docker run -d -p 8080:80 -p 9113:9113 -p 8081:8081 --name tinu-client -v /etc/letsencrypt:/etc/letsencrypt:ro ${{ secrets.DOCKER_USERNAME }}/tinu-client

0 comments on commit badf6f7

Please sign in to comment.