Installation of certificate in Docker: הבדלים בין גרסאות בדף

מתוך ויקי נטפרי
קפיצה לניווט קפיצה לחיפוש
(Create page)
 
 
(5 גרסאות ביניים של 3 משתמשים אינן מוצגות)
שורה 1: שורה 1:
{{En|התקנת תעודה ב-Docker}}
+
{{he|התקנת_תעודה_ב-Docker}}
{{Navigation}}
+
{{Navigation|Security certificate}}
  
Docker הינה תוכנה שמאפשרת לבנות סביבות הרצה עצמאיות על גבי מערכת הפעלה.
+
Docker is a system that allows creating self-contained environments within the hosting OS.
  
==שגיאות אבטחה ביישומים והרצות מתוך הקונטיינר==
+
==Dealing with certificate errors from apps within the container==
קונטיינר של Docker מספק סביבה עצמאית - כמין מחשב חדש בפני עצמו.
 
  
כלים ותוכנות שפועלות בתוך הקונטיינר וניגשים לאינטרנט יתקלו בתעודה לא מוכרת של נטפרי, ולכן צריך להתקין את התעודה של נטפרי ברמת הקונטיינר.
+
A Docker container is a self-contained system; almost like a seperate computer.
 +
Tools and apps that run within the container and try to connect to the Internet will not recognize Netfree's certificate, therefore it is nessecary to install Netfree's root certificate into the container
  
===התקנת תעודת אבטחה בתמונות הנפוצות===
+
===Installing the certificate in popular images===
  
יש להוסיף את השורות הבאות לDockerfile, מתחת לשורת הFROM (במידה ואתם יודעים את טיב הפעולות תוכלו לשים אותו מאוחר ככל היותר לפני השלב הראשון בו נצרכת התעודה):
+
Add the following lines to the DOCEKRFILE under the FROM line. (Adavnced users can add the lines at a later stage - before the first stage that requires Internet connectivity):
  
 
  # --- NETFREE CERT INTSALL ---
 
  # --- NETFREE CERT INTSALL ---
  ADD https://s1.netfree.link/dl/unix-ca.sh /home/netfree-unix-ca.sh  
+
  ADD https://netfree.link/dl/unix-ca.sh /home/netfree-unix-ca.sh  
 
  RUN cat  /home/netfree-unix-ca.sh | sh
 
  RUN cat  /home/netfree-unix-ca.sh | sh
 
  ENV NODE_EXTRA_CA_CERTS=/etc/ca-bundle.crt
 
  ENV NODE_EXTRA_CA_CERTS=/etc/ca-bundle.crt
שורה 21: שורה 21:
 
  # --- END NETFREE CERT INTSALL ---
 
  # --- END NETFREE CERT INTSALL ---
  
התעודה נבדקה על תמונות מבוססות ubuntu,alpine,centos
+
The commands have been tested succesfully on images based on Ubuntu, Alpine & Centos.
וזה מגדיר גם משתני סביבה להפעלה תקינה של python ו nodejs
+
It also correctly sets the environment variables for correct running of nodejs & Python
  
===במקרה בעיה, ולהוראות מתאימות לתמונות אחרות===
+
===Dealing with problems and instructions for other images===
  
כמובן שלכל תמונה ויישומים שבתוכה יש את הדרך שלה, במקרה שאתם מתקשים היעזרו במערכת הפניות (כללו תמיד בפניה את תוכן/קובץ הdockerfile במידת האפשר, ולפחות את שם תבנית התמונה, ולוג מלא ככל האפשר של השגיאה).
+
Obviously every image/app has it's own requirements, if you encounter difficulties you can ask in the support center (always include the content of the DOCKERFILE if possible, or at minimun the base image, and a full error log).
  
נסו גם להיעזר בפורומים טכניים.
 
  
===אפרשות נוספת===
 
https://github.com/AriFordsham/docker-cert
 
  
בפרוייקט הנ"ל יש סקריפט שאפשר להכניס במיקום כלשהו ב-PATH עם זכות קדימה לפקודת docker המקורי כך שהסקריפט יעטוף את פקודת docker המקורי. הסקריפט מייבאת בצורה שקופה את התעודות של המערכת המארחת לתוך הקונטיינר בלי צורך לשנות את ה-DOCKERFILE. זה עובד במערכות לינוקס וווינדוס-WSL.
+
===Prepared images (not official)===
 +
Below some images prepared for working in Netfree environment, who made by an user for netfree-users. They are not official images by Netfree itself.
 +
 
 +
Those images are made in a few linux-archs (amd/arm etc.) as detailed on each one.
 +
 
 +
Since Netfree is working with multi internet providers, those images are made to working with some of those providers.<br />
 +
The list of those supported providers is appears as Labels, such as 'provider-bezeq=true'.
 +
 
 +
Images list (look for '.netfree' in image-tag):
 +
 
 +
* [https://hub.docker.com/r/chaimfn/dotnet_aspnet dotnet/aspnet]
 +
* [https://hub.docker.com/r/chaimfn/dotnet_sdk dotnet/sdk]
 +
* [https://hub.docker.com/r/chaimfn/node node]
 +
* [https://hub.docker.com/r/chaimfn/python python]
 +
* [https://hub.docker.com/r/chaimfn/nginx nginx]
 +
* [https://hub.docker.com/r/chaimfn/php php]
 +
* [https://hub.docker.com/r/chaimfn/buildkit buildkit]
 +
 
  
שאלות ובעיות בהפעלת הסקריפט ניתן לשאול כאן: https://forum.netfree.link/topic/9301
+
===Another option===
  
==שגיאות ברמת תוכנת הDocker עצמה==
+
https://github.com/AriFordsham/docker-cert
  
תוכנת Docker עצמה משתמשת באינטרנט עבור הורדה של תמונה מהDocker hub או מקור אינטרנטי אחר,
+
The above project provides a wrapper script for the docker comand. Put the script somehwere in you PATH where it has precedence to the built in docker command. The script will transparently import root certificates from the host to the container obviating the need to edit the image. The script is known to work in Linux or WSL2 environments.
בדרך כלל פעולה זו לא נתקלת בשגיאה של תעודת אבטחה כי התכונה מסתמכת על מאגר התעודות המותקן במחשב.
+
For questions and problems, ask at: https://forum.netfree.link/topic/9301 or open a Github issue.
  
 +
==Errors originating from the Docker daemon==
 +
 +
The Docker daemon itself also uses the Internet to download images from repositories such as Docker Hub.
 +
In general it does not encounter issues because it uses the OS certificate store.
 
אם אתם נתקלים בשגיאה בשלב הזה (בד"כ בשורת FROM של קובץ Dockerfile או בפקודת docker pull או docker run), השגיאה נראית ככה:
 
אם אתם נתקלים בשגיאה בשלב הזה (בד"כ בשורת FROM של קובץ Dockerfile או בפקודת docker pull או docker run), השגיאה נראית ככה:
  
שורה 57: שורה 75:
 
  curl -L <nowiki>http://api.internal.netfree.link/ca/netfree-ca.crt</nowiki> | sudo tee -a /etc/ssl/certs/ca-certificates.crt /var/lib/boot2docker/certs
 
  curl -L <nowiki>http://api.internal.netfree.link/ca/netfree-ca.crt</nowiki> | sudo tee -a /etc/ssl/certs/ca-certificates.crt /var/lib/boot2docker/certs
 
  sudo /etc/init.d/docker restart  
 
  sudo /etc/init.d/docker restart  
 +
exit
 +
 +
==Errors in the Minikube software level==
 +
Minikube software provides a system for running kubernetes, and operates an internal Docker environment, if you encounter a security certificate error or alternatively installing its packages does not work smoothly.
 +
 +
In this case, run the minikube terminal and run the following commands:
 +
 +
minikube ssh
 +
curl -sL <nowiki>http://netfree.link/dl/ubuntuCertInstallNetFree.sh</nowiki> | sudo -E bash -
 +
sudo /etc/init.d/docker restart
 
  exit
 
  exit

גרסה אחרונה מ־07:36, 27 בדצמבר 2023

לעברית לחצו כאן

To switch from edit view to read view

To search in the Wiki

Home page > Security certificate > Installation of certificate in Docker ‎‎


Docker is a system that allows creating self-contained environments within the hosting OS.

Dealing with certificate errors from apps within the container

A Docker container is a self-contained system; almost like a seperate computer. Tools and apps that run within the container and try to connect to the Internet will not recognize Netfree's certificate, therefore it is nessecary to install Netfree's root certificate into the container

Installing the certificate in popular images

Add the following lines to the DOCEKRFILE under the FROM line. (Adavnced users can add the lines at a later stage - before the first stage that requires Internet connectivity):

# --- NETFREE CERT INTSALL ---
ADD https://netfree.link/dl/unix-ca.sh /home/netfree-unix-ca.sh 
RUN cat  /home/netfree-unix-ca.sh | sh
ENV NODE_EXTRA_CA_CERTS=/etc/ca-bundle.crt
ENV REQUESTS_CA_BUNDLE=/etc/ca-bundle.crt
ENV SSL_CERT_FILE=/etc/ca-bundle.crt
# --- END NETFREE CERT INTSALL ---

The commands have been tested succesfully on images based on Ubuntu, Alpine & Centos. It also correctly sets the environment variables for correct running of nodejs & Python

Dealing with problems and instructions for other images

Obviously every image/app has it's own requirements, if you encounter difficulties you can ask in the support center (always include the content of the DOCKERFILE if possible, or at minimun the base image, and a full error log).


Prepared images (not official)

Below some images prepared for working in Netfree environment, who made by an user for netfree-users. They are not official images by Netfree itself.

Those images are made in a few linux-archs (amd/arm etc.) as detailed on each one.

Since Netfree is working with multi internet providers, those images are made to working with some of those providers.
The list of those supported providers is appears as Labels, such as 'provider-bezeq=true'.

Images list (look for '.netfree' in image-tag):


Another option

https://github.com/AriFordsham/docker-cert

The above project provides a wrapper script for the docker comand. Put the script somehwere in you PATH where it has precedence to the built in docker command. The script will transparently import root certificates from the host to the container obviating the need to edit the image. The script is known to work in Linux or WSL2 environments. For questions and problems, ask at: https://forum.netfree.link/topic/9301 or open a Github issue.

Errors originating from the Docker daemon

The Docker daemon itself also uses the Internet to download images from repositories such as Docker Hub. In general it does not encounter issues because it uses the OS certificate store. אם אתם נתקלים בשגיאה בשלב הזה (בד"כ בשורת FROM של קובץ Dockerfile או בפקודת docker pull או docker run), השגיאה נראית ככה:

Get https://registry-1.docker.io/v2/: x509: certificate signed by unknown authority

או

Error response from daemon: Get https://registry-1.docker.io/v2/: x509: certificate signed by unknown authority.
  • ראשית ודאו שהתקנתם את התעודה של נטפרי במערכת שלכם (אם זה עתה התקנתם את התעודה, יש להפעיל מחדש את הDocker, הפעלת המחשב מחדש כמובן גם טובה).
  • אם מדובר בהתקנה של Docker Toolbox, אז לא די בתעודה ברמת המערכת הפעלה כי מערכת זו עושה שימוש במערכת וירטואלית לפעולות של Docker עצמה.

במקרה זה הפעילו את הטרמינל של Docker והריצו בו את הפקודות הבאות:

docker-machine ssh default
curl -L http://api.internal.netfree.link/ca/netfree-ca.crt | sudo tee -a /etc/ssl/certs/ca-certificates.crt /var/lib/boot2docker/certs
sudo /etc/init.d/docker restart 
exit

Errors in the Minikube software level

Minikube software provides a system for running kubernetes, and operates an internal Docker environment, if you encounter a security certificate error or alternatively installing its packages does not work smoothly.

In this case, run the minikube terminal and run the following commands:

minikube ssh
curl -sL http://netfree.link/dl/ubuntuCertInstallNetFree.sh | sudo -E bash -
sudo /etc/init.d/docker restart
exit