-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adds localhost install feature (rebased version of PR #348) #380
Conversation
@nichlaes , one of the problems is that the default username is
Can you please look into this? Thanks. |
printf "Remember to change foo.com and Gitlab OAuth details to your \
local settings in the following files.\n "
printf "1. %s/client/build/env.js\n " "$TOP_DIR"
printf "2. %s/servers/config/gateway/dynamic/fileConfig.yml\n " "$TOP_DIR" The fileConfig.yml line is required only for trial config. This can be skipped for local config. Can you please put an if condition here to run the printf only in the trial config? Thanks. |
deploy/single-script-install.sh
Outdated
@@ -167,24 +194,16 @@ docker run -d \ | |||
--restart always \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cp -R "${TOP_DIR}/files/user1" "${TOP_DIR}/files/${username}"
docker run -d \
-p 8090:8080 \
--name "ml-workspace-${username}" \
-v "${TOP_DIR}/files/user1:/workspace" \
-v "${TOP_DIR}/files/common:/workspace/common" \
--env AUTHENTICATE_VIA_JUPYTER="" \
--env WORKSPACE_BASE_URL="${username}" \
--shm-size 512m \
--restart always \
mltooling/ml-workspace-minimal:0.13.2 || true
docs/admin/localhost.md
Outdated
|
||
```bash | ||
wget https://raw.githubusercontent.com/INTO-CPS-Association/DTaaS/feature/distributed-demo/deploy/single-script-install.sh | ||
bash single-script-install.sh --env local |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bash single-script-install.sh --env local --user username
docs/admin/trial.md
Outdated
|
||
```bash | ||
wget https://raw.githubusercontent.com/INTO-CPS-Association/DTaaS/feature/distributed-demo/deploy/single-script-install.sh | ||
bash single-script-install.sh | ||
bash single-script-install.sh --env trial |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bash single-script-install.sh --env trial --user username
Code Climate has analyzed commit 4162cb5 and detected 0 issues on this pull request. View more on Code Climate. |
No description provided.