Skip to content
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

Pull the jupyter image as part of docker compose file #39

Merged
merged 3 commits into from
Dec 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,13 @@ Below are instructions for how to deploy this NOMAD Oasis distribution
```

and then repeat steps 4. and 5. above.
8. Clean up old container images:

You can remove unused images to free up space by running:

```sh
docker image prune -a
```

#### NOMAD Remote Tools Hub (NORTH)

Expand Down
9 changes: 9 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,15 @@ services:
ports:
- 80:80

# jupyterlab image: (this is only used to pull the image, no service is run for this)
jupyterlab_image:
image: ghcr.io/fairmat-nfdi/nomad-distro-template/jupyter:main
container_name: nomad_jupyter_image
pull_policy: always
entrypoint: ["true"]
deploy:
replicas: 0 # Ensures the service isn't started

volumes:
mongo:
name: "nomad_oasis_mongo"
Expand Down
Loading