mirror of
https://github.com/docker/compose.git
synced 2026-06-23 07:01:49 +00:00
4 lines
169 B
Bash
Executable file
4 lines
169 B
Bash
Executable file
#!/bin/sh
|
|
set -ex
|
|
docker build -t docker-compose .
|
|
exec docker run -v /var/run/docker.sock:/var/run/docker.sock -v `pwd`:/code -ti --rm --entrypoint bash docker-compose
|