Spring Boot Auto Deployment through GitHub Action + Docker Hub to AWS EC2
Spring Boot is one of the most widely used Java frameworks for building JVM-based web applications. There are multiple ways to deploy an application to a server. You can manually upload the JAR file each time or write a script to automate the transfer. However, these approaches can become tedious over time. In this post, I will show how to set up an automated deployment pipeline using Docker, GitHub Actions, and AWS EC2.
Prerequisites
Before proceeding, ensure you have a basic understanding of the following:
- Docker and Docker Compose
- GitHub Actions
- Git
- Creating an EC2 instance on AWS
- GitHub and Docker Hub accounts
Deployment Workflow Overview
- When a developer pushes code to the repository, GitHub Actions triggers the
deploy.yml
workflow. - GitHub Actions builds a Docker image of the Spring Boot application and pushes it to Docker Hub.
- GitHub Actions then instructs the EC2 server to pull the latest Docker image from Docker Hub and run it.
Docker Configuration
Dockerfile (Located at the root directory)
FROM eclipse-temurin:21-jdk AS build
WORKDIR /app
COPY gradlew gradlew
COPY gradle gradle
COPY build.gradle .
COPY settings.gradle .
RUN chmod +x gradlew
COPY src/ src/
RUN ./gradlew build -x test
FROM eclipse-temurin:21-jdk AS runtime
WORKDIR /app
COPY --from=build /app/build/libs/*.jar app.jar
ENV SPRING_PROFILES_ACTIVE=${SPRING_PROFILES_ACTIVE:-local}
ENTRYPOINT ["java", "-jar", "/app/app.jar"]
docker-compose.yml (Located at the root directory)
services:
app:
build: .
container_name: <your_container_name>
restart: always
ports:
- "80:80"
Explanation
- Copy and create the
Dockerfile
anddocker-compose.yml
files in your project. - The
Dockerfile
compiles the Spring Boot application into a JAR file and sets up the runtime environment. - The
docker-compose.yml
file defines and runs the Spring Boot application inside a Docker container. - These files allow you to run the Spring Boot application as a Docker container seamlessly.
GitHub Actions Workflow for Deploying to Docker Hub
.github/workflows/deploy.yml
name: Deploy <Your App>
on:
push:
branches:
- <your main branch name>
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Login to Docker Hub
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin
- name: Build and push Docker image
run: |
docker build -t <docker_hub_username>/<repository_name>:latest .
docker push <docker_hub_username>/<repository_name>:latest
Steps to Set Up GitHub Actions for Deployment
-
Create a
.github/workflows/deploy.yml
file in your repository. -
In your GitHub repository, navigate to
Settings
→Security
→Secrets and variables
→Actions
. -
Add two new secrets:
DOCKER_USERNAME
: Your Docker Hub username.DOCKER_PASSWORD
: Your Docker Hub password.
-
Update the
docker build
anddocker push
commands in the workflow with your actual Docker Hub repository details.docker build -t <docker_hub_username>/<repository_name>:latest . docker push <docker_hub_username>/<repository_name>:latest
Example:
jobs: build-and-push: runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v4 - name: Login to Docker Hub run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin - name: Build and push Docker image run: | docker build -t kcdevdes/umb-kosa-api:latest . docker push kcdevdes/umb-kosa-api:latest
-
Push your code to the repository, ensuring the branch name matches (e.g.,
main
ormaster
). -
Navigate to the Actions tab in your GitHub repository to monitor the deployment progress.
To be continued...