From 6d63a469013b4211ffc419c02fecd5fa256bb40c Mon Sep 17 00:00:00 2001 From: liangping <18786721@qq.com> Date: Fri, 27 Aug 2021 12:40:17 +0800 Subject: [PATCH] add docker integration --- .github/workflows/docker.yaml | 34 ++++++++++++++++++++++++++++++++++ Dockerfile | 3 +++ ping.conf | 8 ++++++++ 3 files changed, 45 insertions(+) create mode 100644 .github/workflows/docker.yaml create mode 100644 Dockerfile create mode 100644 ping.conf diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml new file mode 100644 index 00000000..50c2bd31 --- /dev/null +++ b/.github/workflows/docker.yaml @@ -0,0 +1,34 @@ +name: docker + +on: + push: + branches: + - 'master' + +jobs: + docker: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 +# - +# name: Set up QEMU +# uses: docker/setup-qemu-action@v1 +# - +# name: Set up Docker Buildx +# uses: docker/setup-buildx-action@v1 + - name: Install + run: yarn install + - name: Build + run: yarn run vue-cli-service build + - name: Login to DockerHub + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - name: Build and push + uses: docker/build-push-action@v2 + with: + context: . + push: true + tags: yaoling/wallet:latest \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..2d307f9c --- /dev/null +++ b/Dockerfile @@ -0,0 +1,3 @@ +FROM nginx:alpine +COPY ping.conf /etc/nginx/conf.d/ping.conf +COPY dist /var/www/html \ No newline at end of file diff --git a/ping.conf b/ping.conf new file mode 100644 index 00000000..b26d65aa --- /dev/null +++ b/ping.conf @@ -0,0 +1,8 @@ +server { + listen 80; + server_name _; + root /var/www/html; + location / { + try_files $uri $uri/ /index.html; + } +}