Docker image with gem dockerize-stack
531
This it's a generator for generate Dockerfile and docker-compose for your application for development
For build a quick stack for your development enviroment docker is the best tool you can use, but you need to configure the Dockerfile docker-compose, persisted database data, set the entrypoint...
This generator help you to have a basic template for your stack; focusing on develepment enviroment.
FROM ruby:2.5.1-alpine
RUN gem install dockerize-stack
WORKDIR /usr/src
ENTRYPOINT ["dockerize-stack"]
docker run --user $(id -u) -it -v $(pwd):/usr/src devmasx/dockerize-stack rails
Content type
Image
Digest
Size
25.9 MB
Last updated
over 6 years ago
docker pull devmasx/dockerize-stack