- Postgres 12
- Redis 5.0.5
- Elasticsearch 7.3.1
- Kibana 7.3.1
- Localstack
docker-compose pull
docker-compose up -d # runs in background
docker-compose stop
By default, docker-compose
will always lookup across the current directory to find a docker-compose.yaml
and the most of the time you will be in your project directory.
To skip a lot of directories changes and speed up the development process you can use the shell script aliases to make your life easer and create your own dev-stack
CLI.
Pro tip: You can add this alias in your .bashrc
, .bash_profile
, .zshrc
... to keep it up forever!
alias dev-stack='docker-compose -f /path/to/dev-stack/docker.compose.yaml'
dev-stack pull
dev-stack up -d # runs in background
dev-stack stop
- Júlio Corradi - Initial work - juliogc
This project is licensed under the MIT License - see the LICENSE.md file for details