Simple build for the docker-compose util as a replacement for a local installation of the utility
Find a file
Travis Automated Update 84e3ab868c docker-compose 1.28.4
2021-02-19 18:13:58 +00:00
.gitignore Initial version 2019-11-26 14:46:37 +01:00
.travis.yml Initial version 2019-11-26 14:46:37 +01:00
build.sh Add check for empty version 2020-10-31 16:09:06 +01:00
container-build Initial version 2019-11-26 14:46:37 +01:00
Dockerfile Initial version 2019-11-26 14:46:37 +01:00
LICENSE Initial version 2019-11-26 14:46:37 +01:00
README.md Initial version 2019-11-26 14:46:37 +01:00
requirements.txt docker-compose 1.28.4 2021-02-19 18:13:58 +00:00

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