All Projects → Red5d → Docker Autocompose

Red5d / Docker Autocompose

Generate a docker-compose yaml definition from a running container

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Docker Autocompose

Docker Series
Docker Series about containerizing ASP.NET Core app with MySQL..
Stars: ✭ 88 (-75.49%)
Mutual labels:  docker-compose, compose
St2 Docker
StackStorm docker-compose deployment
Stars: ✭ 133 (-62.95%)
Mutual labels:  automation, docker-compose
Docker Compose Elasticsearch Kibana
Docker Compose for Elasticsearch and Kibana
Stars: ✭ 584 (+62.67%)
Mutual labels:  docker-compose, compose
Wordpress Nginx Docker Compose
Run WordPress with nginx using Docker Compose.
Stars: ✭ 460 (+28.13%)
Mutual labels:  docker-compose, compose
exo
A process manager & log viewer for dev
Stars: ✭ 296 (-17.55%)
Mutual labels:  docker-compose, compose
Allure Docker Service
This docker container allows you to see up to date reports simply mounting your "allure-results" directory in the container (for a Single Project) or your "projects" directory (for Multiple Projects). Every time appears new results (generated for your tests), Allure Docker Service will detect those changes and it will generate a new report automatically (optional: send results / generate report through API), what you will see refreshing your browser.
Stars: ✭ 194 (-45.96%)
Mutual labels:  automation, docker-compose
Awx Ha Instancegroup
Build AWX clustering on Docker Standalone Installation
Stars: ✭ 106 (-70.47%)
Mutual labels:  automation, docker-compose
Budibase
Budibase is an open-source low-code platform for creating internal apps in minutes. Supports PostgreSQL, MySQL, MSSQL, MongoDB, Rest API, Docker, K8s 🚀
Stars: ✭ 8,071 (+2148.19%)
Mutual labels:  automation, docker-compose
docker-compose-v3
No description or website provided.
Stars: ✭ 15 (-95.82%)
Mutual labels:  docker-compose, compose
Docker Compose Usenet
Docker-powered usenet pipeline
Stars: ✭ 240 (-33.15%)
Mutual labels:  automation, docker-compose
Jenkins Bootstrap Shared
Jenkins as immutable infrastructure made easy. A repository of shared scripts meant to be used as a git submodule. Packing Jenkins, plugins, and scripts into immutable packages and images.
Stars: ✭ 270 (-24.79%)
Mutual labels:  automation, docker-compose
Express Graphql Mongodb Boilerplate
A boilerplate for Node.js apps / GraphQL-API / Authentication from scratch - express, graphql - (graphql compose), mongodb (mongoose).
Stars: ✭ 288 (-19.78%)
Mutual labels:  docker-compose, compose
Devilbox
A modern Docker LAMP stack and MEAN stack for local development
Stars: ✭ 3,598 (+902.23%)
Mutual labels:  docker-compose
Gradle Play Publisher
GPP is Android's unofficial release automation Gradle Plugin. It can do anything from building, uploading, and then promoting your App Bundle or APK to publishing app listings and other metadata.
Stars: ✭ 3,690 (+927.86%)
Mutual labels:  automation
Home Assistantconfig
🏠 Home Assistant configuration & Documentation for my Smart House. Write-ups, videos, part lists, and links throughout. Be sure to ⭐ it. Updated FREQUENTLY!
Stars: ✭ 3,687 (+927.02%)
Mutual labels:  automation
Insomniac
Instagram bot for automated Instagram interaction using Android device via ADB
Stars: ✭ 324 (-9.75%)
Mutual labels:  automation
Stackzy
💻 A cross-platform desktop application to identify libraries used inside an android application. Made possible by Compose Desktop ⚡
Stars: ✭ 307 (-14.48%)
Mutual labels:  compose
Lnmp
💻 🐳 🐘 🐬 🐧 🚀 Start Docker LNMP(LEMP) In less than 2 minutes Powered by Docker Compose. 让 PHP 开发者快速(一键)搭建基于容器技术(Docker、Kubernetes)的开发、测试、生产(CI/CD by Drone)环境.
Stars: ✭ 341 (-5.01%)
Mutual labels:  docker-compose
Portainer
Making Docker and Kubernetes management easy.
Stars: ✭ 20,434 (+5591.92%)
Mutual labels:  docker-compose
Cds
Enterprise-Grade Continuous Delivery & DevOps Automation Open Source Platform
Stars: ✭ 3,677 (+924.23%)
Mutual labels:  automation

docker-autocompose

Generates a docker-compose yaml definition from a running container.

Required Modules:

Example Usage:

sudo python autocompose.py <container-name-or-id>

Generate a compose file for multiple containers together:

sudo python autocompose.py apache-test mysql-test

The script defaults to outputting to compose file version 3, but use "-v 1" to output to version 1:

sudo python autocompose.py -v 1 apache-test

Outputs a docker-compose compatible yaml structure:

docker-compose reference

docker-compose yaml file specification

While experimenting with various docker containers from the Hub, I realized that I'd started several containers with complex options for volumes, ports, environment variables, etc. and there was no way I could remember all those commands without referencing the Hub page for each image if I needed to delete and re-create the container (for updates, or if something broke).

With this tool, I can easily generate docker-compose files for managing the containers that I've set up manually.

Docker Usage

You can use this tool from a docker container without installing it locally by either building it or using the automated build on dockerhub.

Build the container by running:

docker build -t red5d/docker-autocompose .

Use the new image to generate a docker-compose file from a running container or a list of space-separated container names or ids:

 docker run --rm -v /var/run/docker.sock:/var/run/docker.sock red5d/docker-autocompose <container-name-or-id> <additional-names-or-ids>...
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].