-
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.
Addresses #43 (api_gateway, user_management, mysql)
- Loading branch information
1 parent
b472f6b
commit 6f6e0a0
Showing
77 changed files
with
172 additions
and
3,543 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
KafkaConsumer/.settings/org.eclipse.wst.common.project.facet.core.xml
This file was deleted.
Oops, something went wrong.
2 changes: 0 additions & 2 deletions
2
KafkaConsumer/.settings/org.springframework.ide.eclipse.prefs
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
KafkaConsumer/target/classes/META-INF/maven/com.nsa/KafkaConsumer/pom.properties
This file was deleted.
Oops, something went wrong.
91 changes: 0 additions & 91 deletions
91
KafkaConsumer/target/classes/META-INF/maven/com.nsa/KafkaConsumer/pom.xml
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file removed
BIN
-750 Bytes
KafkaConsumer/target/classes/com/nsa/app/KafkaConsumerApplication.class
Binary file not shown.
Binary file removed
BIN
-2.78 KB
KafkaConsumer/target/classes/com/nsa/app/configuration/KafkaConfiguration.class
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-648 Bytes
KafkaConsumer/target/classes/com/nsa/app/repository/UserRepository.class
Binary file not shown.
Binary file removed
BIN
-548 Bytes
KafkaConsumer/target/test-classes/com/nsa/app/KafkaConsumerApplicationTests.class
Binary file not shown.
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,5 @@ | ||
FROM openjdk:13-jdk | ||
|
||
ADD api_gateway.jar / | ||
|
||
CMD [ "java", "-jar", "./api_gateway.jar" ] |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,27 @@ | ||
FROM openjdk:13-jdk | ||
|
||
ARG MAVEN_VERSION=3.6.3 | ||
ARG USER_HOME_DIR="/root" | ||
ARG SHA=c35a1803a6e70a126e80b2b3ae33eed961f83ed74d18fcd16909b2d44d7dada3203f1ffe726c17ef8dcca2dcaa9fca676987befeadc9b9f759967a8cb77181c0 | ||
ARG BASE_URL=https://apache.osuosl.org/maven/maven-3/${MAVEN_VERSION}/binaries | ||
|
||
RUN mkdir -p /usr/share/maven /usr/share/maven/ref \ | ||
&& curl -fsSL -o /tmp/apache-maven.tar.gz ${BASE_URL}/apache-maven-${MAVEN_VERSION}-bin.tar.gz \ | ||
&& echo "${SHA} /tmp/apache-maven.tar.gz" | sha512sum -c - \ | ||
&& tar -xzf /tmp/apache-maven.tar.gz -C /usr/share/maven --strip-components=1 \ | ||
&& rm -f /tmp/apache-maven.tar.gz \ | ||
&& ln -s /usr/share/maven/bin/mvn /usr/bin/mvn | ||
|
||
ENV MAVEN_HOME /usr/share/maven | ||
ENV MAVEN_CONFIG "$USER_HOME_DIR/.m2" | ||
|
||
COPY mvn-entrypoint.sh /usr/local/bin/mvn-entrypoint.sh | ||
COPY settings-docker.xml /usr/share/maven/ref/ | ||
|
||
# ADD KafkaProducer / | ||
|
||
# RUN cd /KafkaProducer | ||
|
||
ENTRYPOINT ["/usr/local/bin/mvn-entrypoint.sh"] | ||
|
||
CMD ["mvn"] |
Binary file not shown.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
Binary file not shown.
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 |
---|---|---|
@@ -1,9 +1,8 @@ | ||
FROM python:3-onbuild | ||
|
||
ADD dataretrieval.py / | ||
RUN pip install --upgrade pip | ||
RUN pip3 install --upgrade pip | ||
ADD requirements.txt / | ||
RUN pip3 install -r requirements.txt | ||
RUN echo "RUN DONE" | ||
|
||
CMD [ "python3", "./dataretrieval.py" ] |
Oops, something went wrong.