generated from interTwin-eu/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #202 from dciangot/doc_split_fix
Finalize splitting of the plugin repositories. Doc updated with working demo
- Loading branch information
Showing
18 changed files
with
497 additions
and
35 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
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
VKTokenFile: "$HOME/interLink/token" | ||
InterlinkURL: "http://XXX.XXX.XXX.XXX" | ||
SidecarURL: "http://docker-sidecar" | ||
InterlinkPort: "3000" | ||
SidecarPort: "4000" | ||
ExportPodData: true | ||
DataRootFolder: ".local/interlink/jobs/" | ||
VerboseLogging: true | ||
ErrorsOnlyLogging: false |
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,46 @@ | ||
version: '3.7' | ||
services: | ||
interlink: | ||
build: | ||
context: ../../../ | ||
dockerfile: docker/Dockerfile.interlink | ||
restart: always | ||
#network_mode: "host" | ||
ports: | ||
- 3000:3000 | ||
volumes: | ||
- type: bind | ||
source: ./ | ||
target: /etc/interlink | ||
environment: | ||
- INTERLINKCONFIGPATH=/etc/interlink/InterLinkConfig.yaml | ||
# healthcheck: | ||
# test: ["CMD", "/check.sh"] | ||
# interval: 10s | ||
# timeout: 10s | ||
# retries: 3 | ||
# start_period: 5s | ||
docker-sidecar: | ||
image: ghcr.io/intertwin-eu/interlink-sidecar-docker:0.0.2-pre1 | ||
restart: always | ||
privileged: true | ||
cap_add: | ||
- SYS_ADMIN | ||
#network_mode: "host" | ||
ports: | ||
- 4000:4000 | ||
environment: | ||
- INTERLINKCONFIGPATH=/etc/interlink/sidecarConfig.yaml | ||
volumes: | ||
- type: bind | ||
source: ./ | ||
target: /etc/interlink | ||
- type: bind | ||
source: /var/run/docker.sock | ||
target: /var/run/docker.sock | ||
# healthcheck: | ||
# test: ["CMD", "/check.sh"] | ||
# interval: 10s | ||
# timeout: 10s | ||
# retries: 3 | ||
# start_period: 5s |
Oops, something went wrong.