mirror of
https://github.com/luzifer-docker/docker-compose.git
synced 2024-12-20 17:51:16 +00:00
Simple build for the docker-compose util as a replacement for a local installation of the utility
.gitignore | ||
.travis.yml | ||
build.sh | ||
container-build | ||
Dockerfile | ||
LICENSE | ||
README.md | ||
requirements.txt |
Luzifer / docker-compsoe
This repository contains a simple build for the docker-compose
util as a replacement for a local installation of the utility.
Usage
$ docker run --rm -ti \
-v "/var/run/docker.sock:/var/run/docker.sock" \
-v "$(pwd):$(pwd)" \
luzifer/docker-compose help
Or you could create a shell alias for that command and use it like a local installation of docker-compose:
$ alias docker-compose='docker run --rm -ti -v "/var/run/docker.sock:/var/run/docker.sock" -v "$(pwd):$(pwd)" luzifer/docker-compose'
$ docker-compose help