mirror of
https://github.com/docker/compose.git
synced 2025-07-08 06:14:25 +02:00
This reverts commit 60411e9f05ac2b9245053491cef7c3cda9e923f1. Closes #556 Signed-off-by: Ben Firshman <ben@firshman.co.uk> Conflicts: requirements.txt setup.py
6 lines
184 B
Bash
Executable File
6 lines
184 B
Bash
Executable File
#!/bin/sh
|
|
set -ex
|
|
docker build -t fig .
|
|
docker run -v /var/run/docker.sock:/var/run/docker.sock fig flake8 fig
|
|
docker run -v /var/run/docker.sock:/var/run/docker.sock fig nosetests $@
|