https://github.com/nuclearredeye/udemy-docker-containers
Notes and Exercises from the docker-containers training course on Udemy
https://github.com/nuclearredeye/udemy-docker-containers
docker training udemy
Last synced: 9 days ago
JSON representation
Notes and Exercises from the docker-containers training course on Udemy
- Host: GitHub
- URL: https://github.com/nuclearredeye/udemy-docker-containers
- Owner: NuclearRedeye
- Created: 2020-11-12T08:50:20.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-11-12T08:55:15.000Z (over 5 years ago)
- Last Synced: 2025-01-11T11:19:54.624Z (over 1 year ago)
- Topics: docker, training, udemy
- Language: Dockerfile
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# docker-containers
Exercises and notes for the [docker-containers](https://elifesciences.udemy.com/course/docker-containers) course on [udemy](https://elifesciences.udemy.com)
# Refelection
Overall the course was OK, too basic for me but the other team members I feel would benefit from it. There were some issues with some of the course content, notably...
## Chapter 3 Section 15
The default `Dockerfile` has an error and will fail to work due to a node/npm path issue. You can resolve it by using a tagged release instead, for example...
```Dockerfile
FROM node:lts
```