skip to Main Content

Dockerfile RUN layers vs script

Docker version 19.03.12, build 48a66213fe So in a dockerfile, if I have the following lines: RUN yum install aaa bbb ccc && <some cmd> && <etc> && <some cleanup> is that a best practice? Should I keep yum part separate…

VIEW QUESTION

Docker: Got "permission denied" error at volume mounting directory

I wrote a docker-compose.yml like this: version: "3" services: notebook: image: jupyter/datascience-notebook ports: - "8888:8888" volumes: - jupyterlabPermanent:/hahaha environment: JUPYTER_ENABLE_LAB: "yes" TZ: "Asia/Tokyo" command: start-notebook.sh --NotebookApp.token='' volumes: jupyterlabPermanent: Let me make it clear that what characters are appearing on the…

VIEW QUESTION
Back To Top
Search