Skip to content

Commit

Permalink
changed ml workpsace image to minimal version
Browse files Browse the repository at this point in the history
  • Loading branch information
nichlaes committed Nov 21, 2023
1 parent b55f654 commit a995817
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions deploy/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ bash script/base.sh || exit
printf "\n \n Download the required docker images...\n "
printf ".........\n "
docker pull traefik:v2.10
docker pull mltooling/ml-workspace:0.13.2
docker pull mltooling/ml-workspace-minimal
printf "\n\n docker images successfully downloaded...\n \n \n "


Expand Down Expand Up @@ -59,7 +59,7 @@ docker run -d \
--env WORKSPACE_BASE_URL="user1" \
--shm-size 512m \
--restart always \
mltooling/ml-workspace:0.13.2 || true
mltooling/ml-workspace-minimal || true

docker run -d \
-p 8091:8080 \
Expand All @@ -70,7 +70,7 @@ docker run -d \
--env WORKSPACE_BASE_URL="user2" \
--shm-size 512m \
--restart always \
mltooling/ml-workspace:0.13.2 || true
mltooling/ml-workspace-minimal || true

#-------------
printf "\n \n Start the traefik gateway server\n "
Expand Down
6 changes: 3 additions & 3 deletions deploy/single-script-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ printf "\n\n End of installing dependencies...\n\n\n "
printf "Download the required docker images...\n "
printf ".........\n\n\n "
docker pull traefik:v2.10
docker pull mltooling/ml-workspace:0.13.2
docker pull mltooling/ml-workspace-minimal
printf "\n\n docker images successfully downloaded...\n \n \n "
#----

Expand Down Expand Up @@ -165,7 +165,7 @@ docker run -d \
--env WORKSPACE_BASE_URL="user1" \
--shm-size 512m \
--restart always \
mltooling/ml-workspace:0.13.2 || true
mltooling/ml-workspace-minimal || true

docker run -d \
-p 8091:8080 \
Expand All @@ -176,7 +176,7 @@ docker run -d \
--env WORKSPACE_BASE_URL="user2" \
--shm-size 512m \
--restart always \
mltooling/ml-workspace:0.13.2 || true
mltooling/ml-workspace-minimal || true

#-------------
printf "\n\n Start the traefik gateway server\n "
Expand Down
2 changes: 1 addition & 1 deletion deploy/vagrant/make_boxes/dtaas/user.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ cat /vagrant/vagrant.pub >> /root/.ssh/authorized_keys

# get the required docker images
docker pull traefik:v2.10
docker pull mltooling/ml-workspace:0.13.2
docker pull mltooling/ml-workspace-minimal
docker pull grafana/grafana:10.1.4
docker pull influxdb:2.7
docker pull rabbitmq:3-management
Expand Down
4 changes: 2 additions & 2 deletions docs/admin/client/CLIENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ docker run -d \
--env WORKSPACE_BASE_URL="alice" \
--shm-size 512m \
--restart always \
mltooling/ml-workspace:0.13.2
mltooling/ml-workspace-minimal

docker run -d \
-p 8091:8080 \
Expand All @@ -136,7 +136,7 @@ docker run -d \
--env WORKSPACE_BASE_URL="bob" \
--shm-size 512m \
--restart always \
mltooling/ml-workspace:0.13.2
mltooling/ml-workspace-minimal
```

Given that multiple services are running at different routes,
Expand Down
2 changes: 1 addition & 1 deletion docs/admin/guides/add_user.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ docker run -d \
--env WORKSPACE_BASE_URL="<username>" \
--shm-size 512m \
--restart always \
mltooling/ml-workspace:0.13.2
mltooling/ml-workspace-minimal

```

Expand Down
2 changes: 1 addition & 1 deletion docs/admin/guides/common_workspace_readonly.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ docker run -d \
--env WORKSPACE_BASE_URL="user2" \
--shm-size 512m \
--restart always \
mltooling/ml-workspace:0.13.2 || true
mltooling/ml-workspace-minimal || true
```

This ensures that the common area is read-only for user2,
Expand Down
2 changes: 1 addition & 1 deletion docs/admin/guides/update_basepath.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ docker run -d \
--env WORKSPACE_BASE_URL="bar/user1" \
--shm-size 512m \
--restart always \
mltooling/ml-workspace:0.13.2 || true
mltooling/ml-workspace-minimal || true
```

## 5. Proceed with install using deploy/install.sh
2 changes: 1 addition & 1 deletion script/docker.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
# get the required docker images
docker pull traefik:v2.10
docker pull mltooling/ml-workspace:0.13.2
docker pull mltooling/ml-workspace-minimal
docker pull grafana/grafana:10.1.4
docker pull influxdb:2.7
docker pull telegraf:1.28.2
Expand Down

0 comments on commit a995817

Please sign in to comment.