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
This request should result in an populated instance of the template b32f6992-0355-4759-b780-ececd4957c23.ipynb included in the repository.
48
+
49
+
## Docker Image
50
+
A docker image is created by a dedicated workflow every time there is a new release by merging a PR in the `release` branch.
51
+
52
+
In case a users or developer has the need to create locally a docker image and deploy the container, the following commands can be used, assuming that image name `sciwyrm` and the container name is `scijug`:
53
+
54
+
Docker image creation
55
+
```
56
+
docker build -f docker/Dockerfile . -t sciwyrm
57
+
58
+
```
59
+
60
+
Docker container instantiation
61
+
```
62
+
docker create --name scijug -p 8000:8000 sciwyrm
63
+
```
64
+
65
+
The Jupyter creation service will be available on http://localhost:8000
66
+
67
+
## Contribution
68
+
All contributors should create a branch dedicated branch to develop their feature and [performing their work.
69
+
Once the code is in a ready, the contribution should be done through a PR to the main branch, where maintainers can review, provide feedback and approve it.
70
+
71
+
## Releases
72
+
Release are managed by maintainers by creating PRs from the main branch to the release branch.
73
+
Merging a PR in release trigger a git workflow that creates a release in the repository and also the creation of a docker image with the version of the service released.
0 commit comments