container-transform
container-transform copied to clipboard
Transforms docker-compose, ECS, and Marathon configurations
First of all: I love your tool! I am converting docker-compose.yml to Dockerrun.aws.json. This has been working very well for almost 3 years now. Recently I added for one service...
``` $ | docker run --rm -i micahhausler/container-transform --input-type ecs --output-type compose Unable to find image 'micahhausler/container-transform:latest' locally latest: Pulling from micahhausler/container-transform 79650cf9cc01: Pull complete 581a2604819e: Pull complete ada98fe44e3a: Pull...
Not sure if it's really needed for this project, but I've been using this fork for a while now, and thought if it might be useful for other people i...
I want to convert Docker compose file to JSON file by using: `cat docker-compose.prod.yml | container-transform -v` command. For the services with the image parameter is works, but for the...
Hi, I'd like to use the log volumes as described here: https://docs.aws.amazon.com/de_de/elasticbeanstalk/latest/dg/create_deploy_docker_v2config.html I am converting a docker-compose.yml, but don't know how to get such a `awseb-logs-` volume. if I use...
Similar to #44 I think, but maybe the situation is different 2 years later? I am trying to convert https://github.com/jfrog/artifactory-docker-examples/tree/master/docker-compose/xray ``` $ container-transform -i compose -o marathon xray.yml Traceback (most...
``` Traceback (most recent call last): File "/usr/local/bin/container-transform", line 9, in load_entry_point('container-transform==1.1.4', 'console_scripts', 'container-transform')() File "/usr/local/lib/python3.5/site-packages/click-6.6-py3.5.egg/click/core.py", line 716, in __call__ return self.main(*args, **kwargs) File "/usr/local/lib/python3.5/site-packages/click-6.6-py3.5.egg/click/core.py", line 696, in main rv...
Before I get to the PR: we are currently in the process of switching all of our current descriptors over to other things in order to test out a new...
When passing the following: ```yaml version: "3" services: local-registry: name: local-registry image: registry environment: REGISTRY_STORAGE_FILESYSTEM_ROOTDIRECTORY: /var/lib/registry REGISTRY_PROXY_REMOTEURL: https://registry-1.docker.io ports: - "127.0.0.1:5000:5000" networks: - docker-registry volumes: - "docker-registry:/var/lib/registry:Z" networks: docker-registry: external:...
Hi - Is there a plan to support docker-compose v3 . I tried to convert marathon.json to docker compose but many definitions got lost . eg the placement constraint. I...