Add Docker and Stripe (#73)

This commit is contained in:
Colette Contreras
2020-10-23 00:38:37 +08:00
committed by GitHub
parent 5643a945eb
commit f16c2fb114
19 changed files with 820 additions and 3 deletions

28
.github/workflows/build-image.yml vendored Normal file
View File

@@ -0,0 +1,28 @@
name: Docker Build And Push To Docker Hub
on:
push:
branches:
# - master
tags:
- v*
jobs:
build:
name: Build Proxy Panel
runs-on: ubuntu-18.04
steps:
- name: Git Checkout Code
uses: actions/checkout@v1
id: git_checkout
- name: Build and push Docker images
uses: docker/build-push-action@v1
with:
push: true
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
repository: v2cc/proxypanel
tag_with_ref: true
tag_with_sha: true
tags: latest