Skip to content

Commit

Permalink
add cookbook
Browse files Browse the repository at this point in the history
  • Loading branch information
SkafteNicki committed Dec 5, 2023
1 parent 2cb96b8 commit b159b74
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
Binary file added literature/Docker_Cookbook.pdf
Binary file not shown.
13 changes: 8 additions & 5 deletions s3_reproducibility/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -424,10 +424,13 @@ beneficial for you to download.
This means that you can be sure that your application will run the same way on your machine as it will on
another machine. Thus, docker gives the ability to abstract away the differences between different machines.
The covers the absolute minimum you should know about docker to get a working image and container. That said, if you are
actively going to be using docker in the near future, one thing to consider is the image size. Even these simple images
that we have build still takes up GB in size. A number of optimizations steps can be taken to reduce the image size for
you or your end user. If you have time you can read [this article](https://devopscube.com/reduce-docker-image-size/) on
different approaches to reduce image size. Additionally, you can take a look at the
The covers the absolute minimum you should know about docker to get a working image and container. If you want to really
deep dive into this topic you can find a copy of the *Docker Cookbook* by Sébastien Goasguen in the litterature folder.
If you are actively going to be using docker in the near future, one thing to consider is the image size. Even these

Check failure on line 430 in s3_reproducibility/docker.md

View workflow job for this annotation

GitHub Actions / build

Trailing spaces [Expected: 0 or 2; Actual: 1]
simple images that we have build still takes up GB in size. A number of optimizations steps can be taken to reduce the

Check failure on line 431 in s3_reproducibility/docker.md

View workflow job for this annotation

GitHub Actions / build

Trailing spaces [Expected: 0 or 2; Actual: 1]
image size for you or your end user. If you have time you can read

Check failure on line 432 in s3_reproducibility/docker.md

View workflow job for this annotation

GitHub Actions / build

Trailing spaces [Expected: 0 or 2; Actual: 1]
[this article](https://devopscube.com/reduce-docker-image-size/) on different approaches to reduce image size.

Check failure on line 433 in s3_reproducibility/docker.md

View workflow job for this annotation

GitHub Actions / build

Trailing spaces [Expected: 0 or 2; Actual: 1]
Additionally, you can take a look at the
[dive-in extension](https://www.docker.com/blog/reduce-your-image-size-with-the-dive-in-docker-extension/) for docker
desktop that lets you explore in depth your docker images.

0 comments on commit b159b74

Please sign in to comment.