Skip to content

Commit

Permalink
add dockerfile, ref (springWarehouse)
Browse files Browse the repository at this point in the history
  • Loading branch information
yennanliu committed Nov 1, 2023
1 parent 77f542d commit 0f07356
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 11 deletions.
14 changes: 14 additions & 0 deletions springWarehouse/DockerFile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Use an official OpenJDK runtime as a parent image
FROM openjdk:8-jre-slim

# Set the working directory to /app
WORKDIR /app

# Copy the compiled JAR file into the container at /app
COPY target/springWarehouse-0.0.1-SNAPSHOT.jar /app/springWarehouse.jar

# Expose port 8080 for the Spring Boot application
EXPOSE 7777

# Run the Spring Boot application when the container starts
CMD ["java", "-jar", "springWarehouse.jar"]
11 changes: 0 additions & 11 deletions springWarehouse/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,14 +73,3 @@ java -jar target/springWarehouse-0.0.1-SNAPSHOT.jar
1. DockerFile
2. CI/CD
3. logs


## Ref

- Existing product
- https://www.tmserp.com.tw/industry_07.aspx?gclid=Cj0KCQjw7JOpBhCfARIsAL3bobdw6Ae8MEQjsVEgMH67A899qtXm91vq5IU3BQqIL3n6EEFMNk3IfjgaAhYNEALw_wcB
- https://blog.csdn.net/QGhurt/article/details/117508945
- code : https://gitee.com/java668/Invoicing
- https://blog.csdn.net/shunyache3481/article/details/125003417
- https://blog.csdn.net/Shirley_G_Zhang/article/details/79321538?spm=1001.2101.3001.6650.4&utm_medium=distribute.pc_relevant.none-task-blog-2%7Edefault%7ECTRLIST%7ERate-4-79321538-blog-125003417.235%5Ev38%5Epc_relevant_anti_t3&depth_1-utm_source=distribute.pc_relevant.none-task-blog-2%7Edefault%7ECTRLIST%7ERate-4-79321538-blog-125003417.235%5Ev38%5Epc_relevant_anti_t3&utm_relevant_index=9
- https://blog.csdn.net/sD7O95O/article/details/128681260?utm_medium=distribute.pc_relevant.none-task-blog-2~default~baidujs_baidulandingword~default-0-128681260-blog-125003417.235^v38^pc_relevant_anti_t3&spm=1001.2101.3001.4242.1&utm_relevant_index=3
9 changes: 9 additions & 0 deletions springWarehouse/doc/ref.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Project Reference

- Existing product
- https://www.tmserp.com.tw/industry_07.aspx?gclid=Cj0KCQjw7JOpBhCfARIsAL3bobdw6Ae8MEQjsVEgMH67A899qtXm91vq5IU3BQqIL3n6EEFMNk3IfjgaAhYNEALw_wcB
- https://blog.csdn.net/QGhurt/article/details/117508945
- code : https://gitee.com/java668/Invoicing
- https://blog.csdn.net/shunyache3481/article/details/125003417
- [WMS warehouse system](https://blog.csdn.net/sD7O95O/article/details/128681260?utm_medium=distribute.pc_relevant.none-task-blog-2~default~baidujs_baidulandingword~default-0-128681260-blog-125003417.235^v38^pc_relevant_anti_t3&spm=1001.2101.3001.4242.1&utm_relevant_index=3)
- [倉庫管理系統 E-R diagram, data model](https://blog.csdn.net/Shirley_G_Zhang/article/details/79321538?spm=1001.2101.3001.6650.4&utm_medium=distribute.pc_relevant.none-task-blog-2%7Edefault%7ECTRLIST%7ERate-4-79321538-blog-125003417.235%5Ev38%5Epc_relevant_anti_t3&depth_1-utm_source=distribute.pc_relevant.none-task-blog-2%7Edefault%7ECTRLIST%7ERate-4-79321538-blog-125003417.235%5Ev38%5Epc_relevant_anti_t3&utm_relevant_index=9)

0 comments on commit 0f07356

Please sign in to comment.