generated from Fascinated/nextjs-13-template-with-tailwindcss
move to dockerhub image
All checks were successful
Publish Docker Image / docker (push) Successful in 1m56s
All checks were successful
Publish Docker Image / docker (push) Successful in 1m56s
This commit is contained in:
parent
99462e2a03
commit
d7a4ad196b
82
.gitea/workflows/upload-image.yaml
Normal file
82
.gitea/workflows/upload-image.yaml
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
name: Publish Docker Image
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- "master"
|
||||||
|
- "development"
|
||||||
|
paths-ignore: # Files in here will not trigger a build
|
||||||
|
- "README.md"
|
||||||
|
- "sharex.sxcu"
|
||||||
|
- "LICENSE"
|
||||||
|
- "docker-compose.yml"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
docker:
|
||||||
|
runs-on: ubuntu-20.04
|
||||||
|
steps:
|
||||||
|
- name: Get branch name
|
||||||
|
id: branch-name
|
||||||
|
uses: tj-actions/branch-names@v7
|
||||||
|
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Restore Docker Cache
|
||||||
|
uses: actions/cache@v3
|
||||||
|
id: docker-cache
|
||||||
|
with:
|
||||||
|
path: /usr/bin/docker
|
||||||
|
key: ${{ runner.os }}-docker
|
||||||
|
|
||||||
|
- name: Install Docker (if not cached)
|
||||||
|
if: steps.docker-cache.outputs.cache-hit != 'true'
|
||||||
|
run: |
|
||||||
|
wget -q -O /tmp/docker.tgz https://download.docker.com/linux/static/stable/x86_64/docker-20.10.23.tgz \
|
||||||
|
&& tar --extract --file /tmp/docker.tgz --directory /usr/bin --strip-components 1 --no-same-owner docker/docker \
|
||||||
|
&& rm -rf /tmp/* &&
|
||||||
|
echo "Done"
|
||||||
|
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v2
|
||||||
|
|
||||||
|
- name: Login to Repo
|
||||||
|
uses: docker/login-action@v2
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.REPO_USERNAME }}
|
||||||
|
password: ${{ secrets.REPO_TOKEN }}
|
||||||
|
|
||||||
|
- name: Restore Docker Build Cache
|
||||||
|
uses: actions/cache@v3
|
||||||
|
id: build-cache
|
||||||
|
with:
|
||||||
|
path: /tmp/.buildx-cache
|
||||||
|
key: ${{ runner.os }}-buildx
|
||||||
|
|
||||||
|
- name: Build and Push (Latest)
|
||||||
|
uses: docker/build-push-action@v4
|
||||||
|
if: steps.branch-name.outputs.current_branch == 'master'
|
||||||
|
with:
|
||||||
|
push: true
|
||||||
|
context: .
|
||||||
|
tags: fascinated/simple-links:latest
|
||||||
|
cache-from: type=local,src=/tmp/.buildx-cache
|
||||||
|
cache-to: type=local,dest=/tmp/.buildx-cache
|
||||||
|
|
||||||
|
- name: Build and Push (Other Branches)
|
||||||
|
uses: docker/build-push-action@v4
|
||||||
|
if: steps.branch-name.outputs.current_branch != 'master'
|
||||||
|
with:
|
||||||
|
push: true
|
||||||
|
context: .
|
||||||
|
tags: fascinated/simple-links:${{ steps.branch-name.outputs.current_branch }}
|
||||||
|
cache-from: type=local,src=/tmp/.buildx-cache
|
||||||
|
cache-to: type=local,dest=/tmp/.buildx-cache
|
||||||
|
|
||||||
|
- name: Save Docker Build Cache
|
||||||
|
if: steps.build-cache.outputs.cache-hit != 'true'
|
||||||
|
run: |
|
||||||
|
mkdir -p /tmp/.buildx-cache
|
||||||
|
cp -r /tmp/.buildx-cache/. /tmp/.buildx-cache-new
|
||||||
|
rm -rf /tmp/.buildx-cache
|
||||||
|
mv /tmp/.buildx-cache-new /tmp/.buildx-cache
|
@ -1,4 +1,5 @@
|
|||||||
FROM node:lts-alpine
|
FROM node:lts-alpine
|
||||||
|
|
||||||
ENV NODE_ENV=production
|
ENV NODE_ENV=production
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
COPY ["package.json", "package-lock.json*", "npm-shrinkwrap.json*", "./"]
|
COPY ["package.json", "package-lock.json*", "npm-shrinkwrap.json*", "./"]
|
||||||
|
@ -2,10 +2,12 @@ version: "3.4"
|
|||||||
|
|
||||||
services:
|
services:
|
||||||
simple-links:
|
simple-links:
|
||||||
build: https://git.fascinated.cc/Fascinated/simple-links.git
|
image: fascinated/simple-links:latest
|
||||||
# Use this below if you want to build the image locally (you need to clone the repo first)
|
# Uncomment the following line to build the image yourself
|
||||||
# build: .
|
# build: https://git.fascinated.cc/Fascinated/simple-links.git
|
||||||
# image: fascinated/simple-links
|
# or build it locally (you need to clone the repo first):
|
||||||
|
# build:
|
||||||
|
# context: .
|
||||||
restart: always
|
restart: always
|
||||||
environment:
|
environment:
|
||||||
NODE_ENV: production
|
NODE_ENV: production
|
||||||
|
Loading…
Reference in New Issue
Block a user