You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A github action is defined to push a new version of the image to docker hub for every new commit to the repository. No need to do anything locally, besides testing the build with `docker build .`
9
+
A github action is defined to push a new version of the image to Docker Hub every time a new `git tag` is pushed to the repository.
10
+
The git tag is also used for the Docker images. An image tag with the git tag and the `latest` tag is published for each Docker build.
11
+
No need to do anything locally, besides testing the build with `docker build .`
10
12
11
13
The build is quite memory heavy, so assign a good amount of memory towards the docker engine (minimum 4gb, better 6gb)
12
14
@@ -15,15 +17,13 @@ The build is quite memory heavy, so assign a good amount of memory towards the d
15
17
Run in `from-jupyter-to-production-workshop` directory, containing the notebooks.
16
18
17
19
```bash
18
-
docker run -p 8888:8888 -v $(pwd)/notebooks:/workshop/notebooks radtkem/from-jupyter-to-production-baseimage
20
+
docker run -p 8888:8888 -v $(pwd)/notebooks:/workshop/notebooks radtkem/from-jupyter-to-production-jupyter
19
21
```
20
22
21
-
*Note: Running on Apple Silicon/M1 is currently not supported*
22
-
23
23
## Run on Windows
24
24
25
25
Run in `from-jupyter-to-production-workshop` directory, containing the notebooks.
26
26
27
27
```bash
28
-
docker run -p 8888:8888 -v %cd%/notebooks:/workshop/notebooks radtkem/from-jupyter-to-production-baseimage
28
+
docker run -p 8888:8888 -v %cd%/notebooks:/workshop/notebooks radtkem/from-jupyter-to-production-jupyter
0 commit comments