Skip to content

Commit

Permalink
Merge pull request #8 from Loudbooks/docker
Browse files Browse the repository at this point in the history
Docker
  • Loading branch information
Loudbooks authored Dec 4, 2024
2 parents 6d8fbfc + 719f7d1 commit 14a874e
Show file tree
Hide file tree
Showing 82 changed files with 786 additions and 691 deletions.
82 changes: 82 additions & 0 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
name: Build and Publish Docker Images

on:
push:
branches:
- master
- docker
pull_request:
branches:
- master
- docker

jobs:
build:
runs-on: ubuntu-latest
permissions:
packages: write

steps:
- name: Checkout code
uses: actions/checkout@v3

- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4

- name: Build with Gradle (backend)
run: |
cd backend
./gradlew bootJar
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Log in to GHCR
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push frontend Docker image to GHCR
uses: docker/build-push-action@v3
with:
context: ./frontend
file: ./frontend/Dockerfile
push: true
tags: ghcr.io/loudbooks/pastebook-frontend:latest

- name: Build and push backend Docker image to GHCR
uses: docker/build-push-action@v3
with:
context: ./backend
file: ./backend/Dockerfile
push: true
tags: ghcr.io/loudbooks/pastebook-backend:latest

- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}

- name: Build and push frontend Docker image to Docker Hub
uses: docker/build-push-action@v3
with:
context: ./frontend
file: ./frontend/Dockerfile
push: true
tags: ${{ secrets.DOCKER_USERNAME }}/pastebook-frontend:latest

- name: Build and push backend Docker image to Docker Hub
uses: docker/build-push-action@v3
with:
context: ./backend
file: ./backend/Dockerfile
push: true
tags: ${{ secrets.DOCKER_USERNAME }}/pastebook-backend:latest
45 changes: 3 additions & 42 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,42 +1,3 @@
HELP.md
.gradle
build/
!gradle/wrapper/gradle-wrapper.jar
!**/src/main/**/build/
!**/src/test/**/build/

### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
bin/
!**/src/main/**/bin/
!**/src/test/**/bin/

### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr
out/
!**/src/main/**/out/
!**/src/test/**/out/

### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/

### VS Code ###
.vscode/

### Kotlin ###
.kotlin
src/main/resources/application.properties
src/main/resources/application.yml
.*
!.gitignore
docker-compose.yml
Loading

0 comments on commit 14a874e

Please sign in to comment.