Skip to content

Commit 6aef584

Browse files
committed
docs(notes): add 2025-03-21 docker image documentation
1 parent 196007c commit 6aef584

File tree

1 file changed

+174
-0
lines changed

1 file changed

+174
-0
lines changed

notes/2025-03-21-docker-image-en.md

+174
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,174 @@
1+
---
2+
title: "Building and Deploying a Docker Image"
3+
lang: en
4+
layout: post
5+
audio: false
6+
translated: false
7+
generated: true
8+
---
9+
10+
Here’s a step-by-step guide to building a Spring Boot application into a Docker image and deploying it on a server:
11+
12+
### Prerequisites
13+
1. **Java** (e.g., JDK 17 or compatible version) installed locally.
14+
2. **Maven** or **Gradle** (depending on your Spring Boot project setup).
15+
3. **Docker** installed on your local machine and the server.
16+
4. **A Spring Boot project** ready to containerize.
17+
5. **Server access** (e.g., via SSH) with Docker installed.
18+
19+
---
20+
21+
### Step 1: Prepare Your Spring Boot Application
22+
Ensure your Spring Boot application is working locally. Test it with:
23+
```bash
24+
mvn spring-boot:run # If using Maven
25+
# OR
26+
gradle bootRun # If using Gradle
27+
```
28+
29+
Make sure the application builds successfully:
30+
```bash
31+
mvn clean package # Maven
32+
# OR
33+
gradle build # Gradle
34+
```
35+
This generates a `.jar` file (e.g., `target/myapp-1.0.0.jar`).
36+
37+
---
38+
39+
### Step 2: Create a Dockerfile
40+
In your project’s root directory (where the `.jar` file is located), create a file named `Dockerfile` with the following content:
41+
42+
```dockerfile
43+
# Use an official OpenJDK runtime as the base image
44+
FROM openjdk:17-jdk-slim
45+
46+
# Set the working directory inside the container
47+
WORKDIR /app
48+
49+
# Copy the Spring Boot JAR file into the container
50+
COPY target/myapp-1.0.0.jar app.jar
51+
52+
# Expose the port your Spring Boot app runs on (default is 8080)
53+
EXPOSE 8080
54+
55+
# Run the JAR file
56+
ENTRYPOINT ["java", "-jar", "app.jar"]
57+
```
58+
59+
**Notes:**
60+
- Replace `myapp-1.0.0.jar` with the actual name of your JAR file.
61+
- Adjust the Java version (`openjdk:17-jdk-slim`) if your app uses a different version.
62+
63+
---
64+
65+
### Step 3: Build the Docker Image
66+
From the directory containing the `Dockerfile`, run:
67+
```bash
68+
docker build -t myapp:latest .
69+
```
70+
- `-t myapp:latest` tags the image as `myapp` with the `latest` version.
71+
- The `.` tells Docker to use the current directory for the build context.
72+
73+
Verify the image was created:
74+
```bash
75+
docker images
76+
```
77+
78+
---
79+
80+
### Step 4: Test the Docker Image Locally
81+
Run the container locally to ensure it works:
82+
```bash
83+
docker run -p 8080:8080 myapp:latest
84+
```
85+
- `-p 8080:8080` maps port 8080 on your machine to port 8080 in the container.
86+
- Open a browser or use `curl` to test (e.g., `curl http://localhost:8080`).
87+
88+
Stop the container with `Ctrl+C` or find its ID with `docker ps` and stop it:
89+
```bash
90+
docker stop <container-id>
91+
```
92+
93+
---
94+
95+
### Step 5: Push the Image to a Docker Registry (Optional)
96+
To deploy to a server, you’ll need to push the image to a registry like Docker Hub (or a private registry). If you skip this, you’ll transfer the image manually.
97+
98+
1. Log in to Docker Hub:
99+
```bash
100+
docker login
101+
```
102+
2. Tag your image:
103+
```bash
104+
docker tag myapp:latest yourusername/myapp:latest
105+
```
106+
3. Push the image:
107+
```bash
108+
docker push yourusername/myapp:latest
109+
```
110+
111+
---
112+
113+
### Step 6: Deploy to the Server
114+
#### Option 1: Using a Registry
115+
1. SSH into your server:
116+
```bash
117+
ssh user@server-ip
118+
```
119+
2. Pull the image:
120+
```bash
121+
docker pull yourusername/myapp:latest
122+
```
123+
3. Run the container:
124+
```bash
125+
docker run -d -p 8080:8080 yourusername/myapp:latest
126+
```
127+
- `-d` runs the container in detached mode (background).
128+
129+
#### Option 2: Manual Transfer
130+
If you didn’t use a registry:
131+
1. Save the image locally as a `.tar` file:
132+
```bash
133+
docker save -o myapp.tar myapp:latest
134+
```
135+
2. Transfer it to the server (e.g., via SCP):
136+
```bash
137+
scp myapp.tar user@server-ip:/path/to/destination
138+
```
139+
3. SSH into the server:
140+
```bash
141+
ssh user@server-ip
142+
```
143+
4. Load the image:
144+
```bash
145+
docker load -i myapp.tar
146+
```
147+
5. Run the container:
148+
```bash
149+
docker run -d -p 8080:8080 myapp:latest
150+
```
151+
152+
---
153+
154+
### Step 7: Verify Deployment
155+
Check if the container is running:
156+
```bash
157+
docker ps
158+
```
159+
160+
Test the app from the server or externally:
161+
- If on the server: `curl http://localhost:8080`
162+
- If external: Use the server’s IP (e.g., `http://server-ip:8080`), ensuring the port is open in the server’s firewall.
163+
164+
---
165+
166+
### Optional: Enhancements
167+
- **Environment Variables**: Pass configs to your app:
168+
```bash
169+
docker run -d -p 8080:8080 -e "SPRING_PROFILES_ACTIVE=prod" myapp:latest
170+
```
171+
- **Docker Compose**: For multi-container setups, use a `docker-compose.yml` file.
172+
- **Restart Policy**: Add `--restart unless-stopped` to ensure the container restarts on server reboot.
173+
174+
Let me know if you need help with any specific part!

0 commit comments

Comments
 (0)