docker-based-development-guide/README.md

20 lines
1.5 KiB
Markdown

# README
This repository is a playground for practising docker based programming following [docker-development-youtube-series](https://github.com/marcel-dempers/docker-development-youtube-series)
* Topic 1: [Working with Dockerfiles (.NET, Golang, Python, NodeJS)](docs/working_with_dockerfiles.md)
* Topic 2: [Working with code (.NET, Golang, Python, NodeJS)](docs/working_with_code.md)
* Topic 3: [Multistage & Layers](docs/multistage_layers.md)
## Reference
VSCode official document contains many good information:
* [Developing inside a Container](https://code.visualstudio.com/docs/remote/containers)
* [devcontainer.json](https://code.visualstudio.com/docs/remote/devcontainerjson-reference) file used to tell VSCode how to access a development container
* [Tutorial: Remote development in Container](https://code.visualstudio.com/docs/remote/containers-tutorial)
* [ASP.NET Core in a container](https://code.visualstudio.com/docs/containers/quickstart-aspnet-core) describe how to create ASP.NET container from local environment (not recommended for docker-based development)
* [Container tips for docker development (like remote)](https://code.visualstudio.com/docs/remote/troubleshooting#_container-tips)
* [Adding extension to devcontainer.json](https://code.visualstudio.com/docs/remote/containers#_adding-an-extension-to-devcontainerjson)
Blogs with good Docker related information:
* [Code in a Container](https://nabeelvalley.netlify.app/blog/2020/25-07/developing-in-a-container-vscode/)