mirror of
https://github.com/woodchen-ink/proxy-go.git
synced 2025-07-18 16:41:54 +08:00
feat(deployment): add SSH deployment commands to Docker build workflow
- Integrated SSH action to automate deployment commands for the proxy-go service. - Added steps to pull the latest Docker image, stop and remove the existing container, and restart the service using Docker Compose. - Enhanced the workflow for smoother deployment processes.
This commit is contained in:
parent
040b01f4a4
commit
9be13ce0ef
14
.github/workflows/docker-build.yml
vendored
14
.github/workflows/docker-build.yml
vendored
@ -94,3 +94,17 @@ jobs:
|
|||||||
|
|
||||||
docker compose -f /opt/1panel/docker/compose/proxy-go/docker-compose.yml up -d
|
docker compose -f /opt/1panel/docker/compose/proxy-go/docker-compose.yml up -d
|
||||||
|
|
||||||
|
- name: Execute deployment commands-SH
|
||||||
|
uses: appleboy/ssh-action@master
|
||||||
|
with:
|
||||||
|
host: ${{ secrets.SERVER_HOST_SH }}
|
||||||
|
username: root
|
||||||
|
key: ${{ secrets.SERVER_SSH_KEY_SH }}
|
||||||
|
script: |
|
||||||
|
docker pull woodchen/proxy-go:latest
|
||||||
|
|
||||||
|
docker stop proxy-go || true
|
||||||
|
docker rm proxy-go || true
|
||||||
|
|
||||||
|
docker compose -f /opt/1panel/docker/compose/proxy-go/docker-compose.yml up -d
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user