docker hub push (#3)
* Docker push action; sync forc manually * Run on push * Update README badges * Remove test
This commit is contained in:
parent
9ee3d311da
commit
fd6f6e2659
3 changed files with 28 additions and 0 deletions
23
.github/workflows/docker_push.yml
vendored
Normal file
23
.github/workflows/docker_push.yml
vendored
Normal file
|
@ -0,0 +1,23 @@
|
|||
name: Publish Docker image
|
||||
on:
|
||||
workflow_dispatch:
|
||||
release:
|
||||
types: [published]
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
push_to_registry:
|
||||
name: Push Docker image to Docker Hub
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check out the repo
|
||||
uses: actions/checkout@v2
|
||||
- name: Push to Docker Hub
|
||||
uses: docker/build-push-action@v1
|
||||
with:
|
||||
username: ${{ secrets.DOCKER_USERNAME }}
|
||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||
repository: seitenwerke/nginx-proxy
|
||||
tag_with_ref: true
|
1
.github/workflows/sync_fork.yml
vendored
1
.github/workflows/sync_fork.yml
vendored
|
@ -1,6 +1,7 @@
|
|||
name: Sync Fork
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
- cron: '30 20 * * *'
|
||||
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
# Seitenwerke nginx-proxy fork
|
||||
  
|
||||
|
||||
# Original Readme
|
||||

|
||||
  [](https://travis-ci.org/jwilder/nginx-proxy) [](https://hub.docker.com/r/jwilder/nginx-proxy 'DockerHub') [](https://hub.docker.com/r/jwilder/nginx-proxy 'DockerHub')
|
||||
|
||||
|
|
Loading…
Reference in a new issue