forked from DataLinkDC/dinky
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Optimize][Doc]Doc optimize (DataLinkDC#1375)
* doc_optimize * doc_optimize * doc_optimize * doc_optimize change dir lower
- Loading branch information
1 parent
097b09f
commit d69a335
Showing
25 changed files
with
494 additions
and
134 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,20 @@ | ||
|
||
FROM flink:1.14.5 as production-stage | ||
|
||
USER root | ||
COPY ./auto.sh /opt/dinky/ | ||
COPY ./lib /opt/dinky/lib/ | ||
COPY ./plugins /opt/dinky/plugins/ | ||
COPY ./config /opt/dinky/config/ | ||
COPY ./jar /opt/dinky/jar/ | ||
WORKDIR /opt/dinky/ | ||
|
||
RUN cp /opt/flink/lib/*.jar /opt/dinky/plugins/ | ||
RUN mkdir -p /opt/dinky/run | ||
RUN mkdir -p /opt/dinky/logs | ||
RUN touch /opt/dinky/logs/dlink.log | ||
RUN chmod -R 777 /opt/dinky/ | ||
|
||
EXPOSE 8888 | ||
|
||
CMD ./auto.sh restart && tail -f /opt/dinky/logs/dlink.log |
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,8 @@ | ||
FROM mysql:5.7 as production-stage | ||
|
||
ENV MYSQL_ROOT_PASSWORD=dlink | ||
ENV MYSQL_DATABASE=dlink | ||
ENV MYSQL_USER=dlink | ||
ENV MYSQL_PASSWORD=dlink | ||
|
||
COPY ./sql/dinky.sql /docker-entrypoint-initdb.d/01-dinky.sql |
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
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 was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
docs/versioned_docs/version-0.7/concept_architecture/_category_.json
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
docs/versioned_docs/version-0.7/concept_architecture/architecture.md
This file was deleted.
Oops, something went wrong.
64 changes: 0 additions & 64 deletions
64
docs/versioned_docs/version-0.7/concept_architecture/concept.md
This file was deleted.
Oops, something went wrong.
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,4 @@ | ||
{ | ||
"label": "部署指南", | ||
"position": 6 | ||
} |
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
2 changes: 1 addition & 1 deletion
2
...d_docs/version-0.7/build_deploy/deploy.md → ...d_docs/version-0.7/deploy_guide/deploy.md
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,5 +1,5 @@ | ||
--- | ||
sidebar_position: 2 | ||
sidebar_position: 3 | ||
id: deploy | ||
title: 部署 | ||
--- | ||
|
Oops, something went wrong.