add docker
This commit is contained in:
36
.gitea/workflow/publish.yml
Normal file
36
.gitea/workflow/publish.yml
Normal file
@ -0,0 +1,36 @@
|
||||
name: Publish Docker Images
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- "master"
|
||||
|
||||
jobs:
|
||||
docker:
|
||||
runs-on: ubuntu-22.04
|
||||
container: fascinated/docker-images:node-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Login to Repo
|
||||
uses: docker/login-action@v2
|
||||
with:
|
||||
username: ${{ secrets.REPO_USERNAME }}
|
||||
password: ${{ secrets.REPO_TOKEN }}
|
||||
|
||||
- name: Build and Push (Node)
|
||||
uses: docker/build-push-action@v4
|
||||
with:
|
||||
push: true
|
||||
context: ./apps/node
|
||||
file: ./apps/node/Dockerfile
|
||||
tags: fascinated/proxy:node-latest
|
||||
|
||||
- name: Build and Push (Proxy)
|
||||
uses: docker/build-push-action@v4
|
||||
with:
|
||||
push: true
|
||||
context: ./apps/proxy
|
||||
file: ./apps/proxy/Dockerfile
|
||||
tags: fascinated/proxy:proxy-latest
|
Reference in New Issue
Block a user