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

Using quick startup image #21

Open
wants to merge 5 commits into
base: staging
Choose a base branch
from
Open

Using quick startup image #21

wants to merge 5 commits into from

Commits on May 17, 2024

  1. Use docker image with home directory tar

    When the user launches the container, a lot of time is spent on preparing the environment, setting up codes, pseudopotentials, etc. In order to reduce the launch time of the container, we tar already prepared home directory and keep it in the image, and then untar it when the container is launched. This way, the user can start working with the container immediately.
    superstar54 committed May 17, 2024
    Configuration menu
    Copy the full SHA
    ae0f948 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3e39872 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a2925ea View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2024

  1. use postStart populate the notebook user’s home directory

    A simple way to populate the notebook user’s home directory is to add the required files to the container’s /tmp directory and then copy them to /home/jovyan using a postStart hook.
    superstar54 committed Jun 5, 2024
    Configuration menu
    Copy the full SHA
    061abd4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    94e1c83 View commit details
    Browse the repository at this point in the history