https://github.com/robertoprevato/azuredocker
Docker images for web applications to host in Azure
https://github.com/robertoprevato/azuredocker
Last synced: 5 months ago
JSON representation
Docker images for web applications to host in Azure
- Host: GitHub
- URL: https://github.com/robertoprevato/azuredocker
- Owner: RobertoPrevato
- License: mit
- Created: 2017-10-10T20:06:13.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-01-03T16:46:40.000Z (almost 7 years ago)
- Last Synced: 2025-03-30T14:26:52.512Z (6 months ago)
- Language: Dockerfile
- Size: 24.4 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AzureDocker
Docker images for web applications to host in Azure.
| Image | Description |
|---------|-------------|
| ASPNETCore | ASP.NET Core web application, using .NET Core 2.0 |
| GoHttp | Go 1.9.1 web application, using net/http |
| GoFastHttp | Go 1.9.1 web application, using fast http |
| PyPyGunicornGeventFlask | PyPy 3, Gunicorn, Gevent, Flask web application |
| PythonUvloopHttpTools | Python 3.6.2 application using uvloop and httptools |
| PythonGunicornAiohttpUvloop | Python 3.6.2 application using uvloop, aiohttp and Gunicorn |---
The preparation of these images has been described in this blog post: [https://robertoprevato.github.io/Running-Docker-applications-in-Azure/](https://robertoprevato.github.io/Running-Docker-applications-in-Azure/).
Applications templates are ready to support benchmarks, returning two kinds of answer:
* an Hello World message with a timestamp and description of the technology stack
* given a query parameter `s` with numeric value `n` between 1 and 100, a response of _n kB_, using cached variables for these messagesThis is inspired and partially reproduced from the code prepared by [MagicStack](https://github.com/MagicStack) for their benchmarks.