This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM python:2.7-alpine | |
RUN wget https://releases.hashicorp.com/envconsul/0.6.1/envconsul_0.6.1_linux_amd64.zip&&unzip envconsul_0.6.1_linux_amd64.zip\ | |
&& ln -sf $PWD/envconsul /usr/local/bin | |
ADD app.py /app.py | |
ADD requirements.txt /requirements.txt | |
RUN pip install -r /requirements.txt | |
ENTRYPOINT envconsul -consul 172.17.0.2:8500 -prefix $PREFIX python /app.py |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM python:2.7-alpine | |
RUN wget https://releases.hashicorp.com/envconsul/0.6.1/envconsul_0.6.1_linux_amd64.zip&&unzip envconsul_0.6.1_linux_amd64.zip\ | |
&& ln -sf $PWD/envconsul /usr/local/bin | |
ADD app.py /app.py | |
ADD requirements.txt /requirements.txt | |
RUN pip install -r /requirements.txt | |
ENTRYPOINT envconsul -consul 172.17.0.2:8500 -prefix $PREFIX python /app.py |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Nov 11 16:12:19 localhost docker: time="2015-11-11T16:12:19.206810112Z" level=info msg="GET /v1.20/containers/ubuntu:latest/json" | |
Nov 11 16:12:19 localhost docker: time="2015-11-11T16:12:19.206950720Z" level=error msg="Handler for GET /containers/{name:.*}/json returned error: no such id: ubuntu:latest" | |
Nov 11 16:12:19 localhost docker: time="2015-11-11T16:12:19.206969206Z" level=error msg="HTTP Error" err="no such id: ubuntu:latest" statusCode=404 | |
Nov 11 16:12:19 localhost docker: time="2015-11-11T16:12:19.207164087Z" level=info msg="GET /v1.20/images/ubuntu:latest/json" | |
Nov 11 16:12:19 localhost docker: time="2015-11-11T16:12:19.207198585Z" level=error msg="Handler for GET /images/{name:.*}/json returned error: No such image: ubuntu:latest" | |
Nov 11 16:12:19 localhost docker: time="2015-11-11T16:12:19.207212218Z" level=error msg="HTTP Error" err="No such image: ubuntu:latest" statusCode=404 | |
Nov 11 16:12:19 localhost docker: time="2015-11-11T16:12:19.333841339Z" level=info msg="POST /v1.20/images/create?fromIm |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
test |
NewerOlder