Here are
67 public repositories
matching this topic...
An optimized docker image includes Android, Kotlin, Flutter sdk.
Updated
Aug 7, 2020
Dockerfile
Await availability of resources.
The research project based on Semantic KITTTI dataset, 3d Point Cloud Segmentation , Obstacle Detection
Updated
Jun 14, 2020
Jupyter Notebook
A tool to wait for services and execute command. Useful in Docker containers.
Updated
May 28, 2019
Python
🐳 This package will let you dockerize your Django application.
Updated
Jun 28, 2020
Python
Dockerize your PHP apps in one click ;)
Updated
Jun 7, 2020
Shell
Assistant for code development with advanced machine learning features
Code for Dockerizing Jenkins tutorial series: 1) Dockerizing Jenkins 2 setup and using it along with Sonarqube to create modern declarative build pipeline. 2) Deployment with maven and JFrog Artifactory 3) Securing password with docker-compose, docker-secret and jenkins credentials plugin
Updated
Feb 26, 2020
Shell
Updated
Jun 1, 2020
Shell
Updated
Jan 25, 2018
Shell
alpine + nginx + php-fpm + dockerize = easy PHP app server goodness
Updated
Apr 12, 2020
Shell
Ecommerce app with docker support
Install/use various Docker-related tools on CircleCI
Updated
Jul 31, 2020
Dockerfile
Temzinbot, minecraft bot implementation with mineflayer.
Updated
Jul 24, 2020
JavaScript
Yet Another Docker HandsOn Workshops
Service Discovery with Consul, Registrator and Nginx in a Dockerized environment.
Updated
Nov 3, 2017
Shell
Dockerfile examples to dockerizing apps ( for Java Spring Boot, Python Django, nodeJS, React, Go )
Updated
Aug 22, 2019
Dockerfile
IS2 Workbench - An open source runtime environment to execute statistical services
Updated
Aug 18, 2020
Java
🐳 A PHP analyzer feature detector
Updated
Sep 29, 2017
Ruby
Official Jenkins Docker image customized for socialplus
Updated
Feb 7, 2020
Dockerfile
Dockerize self-hosted github runner
Updated
Jun 2, 2020
Dockerfile
Dockerize the Splunk AppInspect tool.
Updated
May 13, 2020
Shell
A collection of useful Docker images I created and pushed to Docker Hub
Updated
Aug 19, 2019
Dockerfile
A repository of Docker examples from simple to advanced.
Updated
Oct 18, 2018
Shell
Updated
Feb 24, 2020
Smarty
Video Course Guide By LinkedIn Learning Instructor, Mary Ellen Bowman
The latest hasura/graphql-engine with dockerize.
Updated
Aug 4, 2020
Dockerfile
Updated
Jun 14, 2020
Shell
Updated
May 7, 2018
Shell
Improve this page
Add a description, image, and links to the
dockerize
topic page so that developers can more easily learn about it.
Curate this topic
Add this topic to your repo
To associate your repository with the
dockerize
topic, visit your repo's landing page and select "manage topics."
Learn more
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.
Hi,
I tried to use create-fastify-app with openapi specification version 3.0.1. Example converted v2 petstore swagger on editor.swagger.io to v3. But fastify-app failed with message 'parameter must contain a valid Open Api Version 2.0 or 3.0.x'. Source:
const parse = (content) => {
if (content.swagger && content.swagger.indexOf('2.0') === 0) {
return V2.parse(content)
}
throw