Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Accept all docker run options #10

Open
augustohp opened this issue Jun 19, 2020 · 0 comments
Open

Accept all docker run options #10

augustohp opened this issue Jun 19, 2020 · 0 comments
Labels
enhancement New feature or request
Milestone

Comments

@augustohp
Copy link
Owner

An example of workflow I am interested in:

  1. Someone appears with a doubt and some code I can run, it doesn't have Docker;
  2. I clone the repository and start a container for it:
    $ docker run -di --name www-php -v "${PWD}:/var/www" -w "/var/wwww" -p 8080:80 php:7.2-apache
    
  3. Now a bunch of dependencies are installed, amounting to a history like:
    $ docker exec -it www-php bash
    $ pecl install xdebug-2.6.0
    $ docker-php-ext-enable xdebug
    $ php bin/setup.php
    

The idea would be to use ship instead of docker run, enabling us to create a Dockerfile while we discover what is needed.

@augustohp augustohp added the enhancement New feature or request label Jun 19, 2020
@augustohp augustohp added this to the 2.0.0 milestone Jun 19, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant