Update faq.md

This commit is contained in:
Ayaz Salikhov
2023-11-18 12:21:35 +01:00
committed by GitHub
parent 011a724ba5
commit a49920aac9

View File

@@ -4,9 +4,9 @@
There are 2 types of data, which you might want to persist.
1. If you want to persist your environment (i.e. packages installed by `mamba`, `conda`, `pip`, `apt-get` and so on),
then you should create an inherited image and install them only once while building your Dockerfile.
An example for using `mamba` and `pip` in a child image is available
1. If you want to persist your environment (i.e. packages installed by `mamba`, `conda`, `pip`, `apt-get`, and so on),
then you should create an inherited image and install packages only once while building your Dockerfile.
An example of using `mamba` and `pip` in a child image is available
[here](./recipes.md#using-mamba-install-recommended-or-pip-install-in-a-child-docker-image).
```{note}
@@ -15,7 +15,7 @@ There are 2 types of data, which you might want to persist.
To make it work, install this package in your inherited image and rerun `docker build` command.
```
2. If you want to persist user-data (files created by you, like `python` scripts, notebooks, text files and so on),
2. If you want to persist user data (files created by you, like `python` scripts, notebooks, text files, and so on),
then you should use a
[Docker bind mount](https://docs.docker.com/storage/bind-mounts/) or
[Docker Volume](https://docs.docker.com/storage/volumes/).
@@ -26,7 +26,7 @@ There are 2 types of data, which you might want to persist.
We have lots of users with different packages they want to use.
Adding them all is impossible, so we have several images to choose from.
[Choose the image](selecting.md), that is closest to your needs and feel free to [add your package on top of our images](recipes.md#using-mamba-install-recommended-or-pip-install-in-a-child-docker-image).
[Choose the image](selecting.md), that is closest to your needs, and feel free to [add your package on top of our images](recipes.md#using-mamba-install-recommended-or-pip-install-in-a-child-docker-image).
## Who is `jovyan`