Skip to content

chore(entrypoint.sh): revert nginx mode #218

chore(entrypoint.sh): revert nginx mode

chore(entrypoint.sh): revert nginx mode #218

Workflow file for this run

name: Docker Image CI
on:
workflow_dispatch:
push:
branches: master
schedule:
- cron: "0 2 1 * *"
jobs:
build:
name: Deploy to Docker
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v2
- name: Log in to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Get current date
id: date
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"
- name: Build and push Docker image
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: |
bh42/nginx-reverseproxy-letsencrypt:latest
bh42/nginx-reverseproxy-letsencrypt:${{ steps.date.outputs.date }}