This project was realized as part of my article "A beginner's guide to Docker - how to create your first Docker application". This project is an example of a first application with Docker.
If you want to know more about Docker and learn how to create your first application, you can read my article.
The project launch is in two parts: build and start.
$ docker build -t [image_name] .
$ docker run [image_name]
- Gaël THOMAS - gael-thomas