Skip to content

Commit

Permalink
Removed unneccessary emphasis
Browse files Browse the repository at this point in the history
  • Loading branch information
gunbux committed Feb 19, 2024
1 parent e9633db commit b11c2b0
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions slides.md
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ ENTRYPOINT ["python3", "wasg-register.py"]

- `FROM` : Takes a base image
- `RUN` : Run a command
- `COPY` : Copy a file from our host to the **container**
- `COPY` : Copy a file from our host to the container
- `ENTRYPOINT` : Command to start the ‘application’, this is equivalent to running `python3 wasg-register.py`

::right::
Expand Down Expand Up @@ -712,7 +712,7 @@ layout: center
This is what Docker Compose aims to address, as well as a bunch of other different issues we have with plain docker.
- What if we want to run multiple containers together? I don’t want to copy and paste 10 different commands!
- What if I want the docker containers to **communicate** with each other? (We won’t cover this in too much detail, but it’s possible for this to work!)
- What if I want the docker containers to communicate with each other? (We won’t cover this in too much detail, but it’s possible for this to work!)
---
layout: center
Expand Down Expand Up @@ -945,20 +945,21 @@ layout: center
layout: center
---

## Conclusion
## Summary of key ideas

- Docker -> Really cool for managing environments to deploy stuff
- Docker Compose -> Really cool for managing variables and things around docker containers
- Dockerfile -> Let's you write your own docker container
- **Docker** is a containerization platform for developing, shipping, and running applications.
- **Dockerfiles** are scripts containing commands to build Docker images.
- **Docker Compose** allows for defining and managing multi-container Docker applications via a simple YAML file.

---
layout: center
---

## Resources to explore:

- Docker for full stack deployment: https://docker-curriculum.com/
- Docker Curriculum: https://docker-curriculum.com/
- Really cool docker compose files: https://github.com/Haxxnet/Compose-Examples
- Official Docker Cheatsheet: https://docs.docker.com/get-started/docker_cheatsheet.pdf

---
layout: center
Expand Down

0 comments on commit b11c2b0

Please sign in to comment.