mirror of
https://github.com/r-freeman/portfolio.git
synced 2024-11-22 07:05:41 +00:00
Test gitea registry
Some checks failed
Build And Publish / BuildAndPublish (push) Failing after 2m6s
Some checks failed
Build And Publish / BuildAndPublish (push) Failing after 2m6s
This commit is contained in:
parent
dd25162cc5
commit
4c6a8a8481
@ -23,8 +23,8 @@ jobs:
|
|||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
registry: git.ryansnet.xyz
|
registry: git.ryansnet.xyz
|
||||||
username: ${{secrets.GITEA_REGISTRY_USERNAME}}
|
username: ${{secrets.REGISTRY_USERNAME}}
|
||||||
password: ${{secrets.GITEA_REGISTRY_PASSWORD}}
|
password: ${{secrets.REGISTRY_PASSWORD}}
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: https://github.com/docker/setup-buildx-action@v3
|
uses: https://github.com/docker/setup-buildx-action@v3
|
||||||
@ -38,7 +38,7 @@ jobs:
|
|||||||
context: .
|
context: .
|
||||||
file: ./Dockerfile
|
file: ./Dockerfile
|
||||||
push: true
|
push: true
|
||||||
tags: ${{secrets.DOCKER_HUB_USERNAME}}/${{vars.REPO_NAME}}:v1
|
tags: ${{secrets.DOCKER_HUB_USERNAME}}/${{vars.REPO_NAME}}:latest
|
||||||
|
|
||||||
- name: Stop and remove old Docker container
|
- name: Stop and remove old Docker container
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
@ -48,9 +48,9 @@ jobs:
|
|||||||
|
|
||||||
- name: Pull new image and start Docker container
|
- name: Pull new image and start Docker container
|
||||||
run: |
|
run: |
|
||||||
sudo docker pull ${{secrets.DOCKER_HUB_USERNAME}}/${{vars.REPO_NAME}}:v1
|
sudo docker pull ${{secrets.DOCKER_HUB_USERNAME}}/${{vars.REPO_NAME}}:latest
|
||||||
sudo docker run -d --restart unless-stopped \
|
sudo docker run -d --restart unless-stopped \
|
||||||
--env-file ./.env \
|
--env-file ./.env \
|
||||||
--name portfolio \
|
--name portfolio \
|
||||||
-p ${{vars.DEPLOY_IP}}:3000:3000 \
|
-p ${{vars.DEPLOY_IP}}:3000:3000 \
|
||||||
${{secrets.DOCKER_HUB_USERNAME}}/${{vars.REPO_NAME}}:v1
|
${{secrets.DOCKER_HUB_USERNAME}}/${{vars.REPO_NAME}}:latest
|
Loading…
Reference in New Issue
Block a user