Here are
86 public repositories
matching this topic...
An optimized docker image includes Android, Kotlin, Flutter sdk.
Updated
Apr 19, 2022
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
Dockerize your PHP apps ;)
Updated
Dec 17, 2021
Shell
A tool to wait for services and execute command. Useful in Docker containers.
Updated
Mar 20, 2022
Python
🐳 Dockerize your Django application.
Updated
Jan 24, 2021
Python
Install/use various Docker-related tools on CircleCI
Updated
May 5, 2022
Shell
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
Assistant for code development with advanced machine learning features
alpine + nginx + php-fpm + dockerize = easy PHP app server goodness
Updated
Oct 14, 2021
Shell
Updated
Jan 16, 2021
Shell
Updated
Jan 25, 2018
Shell
Temzinbot, minecraft bot implementation with mineflayer.
Updated
Feb 10, 2022
JavaScript
Updated
Mar 26, 2022
Python
Ecommerce app with docker support
TEASER++ is a fast and certifiably-robust point cloud registration library
Updated
Jan 29, 2021
Jupyter Notebook
Simple, standalone, flexible and very lightweight board app/PWA in JavaScript.
Updated
Mar 8, 2022
JavaScript
IS2 Workbench - An open source runtime environment to execute statistical services
Updated
Sep 10, 2021
Java
Example Machine Learning as a Service
Updated
Oct 24, 2020
Jupyter Notebook
Video Course Guide By LinkedIn Learning Instructor, Mary Ellen Bowman
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
🐳 A PHP analyzer feature detector
Updated
Sep 29, 2017
Ruby
Dockerize self-hosted github runner
Updated
Jun 2, 2020
Dockerfile
A ready to use docker compose to dockerize and ship your Laravel application 🐋 🐋
Updated
Oct 17, 2020
Dockerfile
A very simple tool to containerize your Laravel App ...
Official Jenkins Docker image customized for socialplus
Updated
Aug 25, 2021
Dockerfile
A repository of Docker examples from simple to advanced.
Updated
Oct 18, 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