-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add dockerfile, ref (springWarehouse)
- Loading branch information
Showing
3 changed files
with
23 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |