https://github.com/diberry/dockerfile-azure
For programming languages supported in Microsoft Docs quickstarts
https://github.com/diberry/dockerfile-azure
Last synced: 12 months ago
JSON representation
For programming languages supported in Microsoft Docs quickstarts
- Host: GitHub
- URL: https://github.com/diberry/dockerfile-azure
- Owner: diberry
- Created: 2019-08-07T20:29:50.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2021-04-21T19:50:46.000Z (about 5 years ago)
- Last Synced: 2024-10-05T03:40:55.753Z (over 1 year ago)
- Language: Python
- Size: 28.3 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Azure Development Environments
This is a collection of development environments I use. Please feel free to contribute, or suggest corrections.
## Use docker and bash shell
1. For each environment, use a docker file, `Dockerfile` that spins up the environment and installs dependencies. Docker container should go away when file finishes.
1. Create a bash shell script to run the docker command that pulls in any Azure resources such as keys and regions.
## Docker commands
### List images
docker images
### Remove image
docker rmi image-name-or-id -f
### List containers
docker ps
docker ps -a