Skip to content

Commit

Permalink
fix(#151): stream end
Browse files Browse the repository at this point in the history
  • Loading branch information
mjh000526 committed Dec 3, 2024
1 parent 5f294c3 commit cddfe9b
Show file tree
Hide file tree
Showing 2 changed files with 237 additions and 340 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/be-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ jobs:
- name: Deploy
run: |
ssh -o StrictHostKeyChecking=no mun@211.188.48.24 "
if [ \$(docker ps -a -q -f name=froxy-always) ]; then
docker stop froxy-always
docker rm froxy-always
if [ \$(docker ps -a -q -f name=always) ]; then
docker stop always
docker rm always
fi
docker pull ${{ secrets.DOCKER_USERNAME }}/froxy-server:always && \
docker run --network froxy-network -d --name froxy-always -p 3001:3000 -v /var/run/docker.sock:/var/run/docker.sock ${{ secrets.DOCKER_USERNAME }}/froxy-server:always
docker run --network froxy-network -d --name always -p 3001:3000 -v /var/run/docker.sock:/var/run/docker.sock ${{ secrets.DOCKER_USERNAME }}/froxy-server:always
docker image prune -f
"
Loading

0 comments on commit cddfe9b

Please sign in to comment.