Skip to content

Commit

Permalink
HR
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanvangastel committed Sep 8, 2023
1 parent 03473cb commit ffbd00d
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 10 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Gebruik het `COPY` command binnen de `Dockerfile` om het bestand `index.html` in



------
---


**Antwoord**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Het commando om `nginx` in de voorgrond te starten is: `nginx -g "daemon off;"`.



----
---



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Als het gelukt is kun je hem weer bekijken [in je browser](https://[[HOST_SUBDOM



-------
---



Expand Down
14 changes: 14 additions & 0 deletions beginner/09_Image_management/9.3_opdracht.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,17 @@ Als het goed is zie je nu ook het image staan zonder `Docker_ID`. Verwijder deze
`docker image rm mijn-debian:dev`{{execute}}

Alleen de `tag` wordt verwijderd en niet het gehele image. Dit omdat komt omdat andere `tags` nog refereren naar het betreffende image.

---

**Antwoord**

Schrijf die `Dockerfile` die je eigen `mijn-debian:dev` als base image gebruikt, voeg er iets aan toe, build en tag deze als `:1.0`.

<pre class="file" data-filename="Dockerfile" data-target="replace">
FROM DOCKER_ID/mijn-debian:dev

RUN apt-get update && apt-get install -y curl
</pre>

`docker image build -t <Docker_ID>/mijn-debian:1.0 .`{{copy}}

0 comments on commit ffbd00d

Please sign in to comment.