forked from CIROH-UA/ciroh-ua_website
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added requestimages.md (CIROH-UA#156)
- Loading branch information
Showing
6 changed files
with
93 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
docs/services/cloudservices/ciroh jupyterhub/documentation/requestimages.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
--- | ||
sidebar_position: 3 | ||
title: "Instructions for requesting custom images" | ||
description: "2i2c JupyterHub is a cloud-based JupyterHub environment specifically designed for hydrological researchers. It is powered by 2i2c JupyterHub, a cloud-based JupyterHub environment specifically on Google Cloud" | ||
tags: | ||
- 2i2c | ||
- JupyterHub | ||
- GCP | ||
- notebook | ||
- custom images | ||
- tutorial | ||
--- | ||
|
||
# A Step-by-Step Guide: Requesting custom images | ||
If you have a request for creating custom images, then please follow these instructions. | ||
### 1. Create an environment.yml file: | ||
- Open your terminal or command prompt. Make sure you have conda installed and activated in the environment that contains the packages you want to use for creating custom images. Learn more [here](https://conda.io/projects/conda/en/latest/user-guide/getting-started.html). | ||
|
||
- Run the following command, replacing **ENVNAME** with the actual name of your environment. | ||
|
||
```bash | ||
conda env export -n ENVNAME > environment.yml | ||
``` | ||
|
||
### 2. Submit a Request Form: | ||
|
||
|
||
- Click on the link below to access the Jupyterhub (2i2c) Software Install form. | ||
- Select Install Software on CIROH 2i2c JupyterHub as a reason for request. | ||
- Fill out remaining sections of the form and submit it. | ||
|
||
<a class="button button--active button--primary" href="https://forms.office.com/Pages/ResponsePage.aspx?id=jnIAKtDwtECk6M5DPz-8p4IIpHdEnmhNgjOa9FjrwGtUNUoyV1UxNFIzV1AyTDhTNzdOT1Q5NVlLTC4u"> JupyterHub (2i2c) Software Install Form</a> | ||
|
||
### 3. Share your environment.yml file with CIROH-IT support | ||
|
||
- After submitting the request form, attach the environment.yml file you created in step 1 to an email and send it to ciroh-it-support@ua.edu | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import React from 'react'; | ||
import ReactPlayer from 'react-player'; | ||
|
||
export default function VideoPlayer({ url }) { | ||
return ( | ||
<ReactPlayer url={url} width="100%" height="400px" controls /> | ||
); | ||
} |