Skip to content
This repository was archived by the owner on Oct 17, 2020. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
FROM python:2-slim
RUN pip install http://github.com/nephics/euvat-json-api/archive/master.zip
EXPOSE 3000
CMD ["euvat","--port=3000"]
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,18 @@ In this file, you can set the same options as for the command line.

The following more detailed instructions are also available from your server [http://127.0.0.1:8040/]().

##Docker

Run Services
============
echo == euvat
docker run -d --restart always --name euvat \
euvat

Link your app
=============
docker run -d --restart always --name my_app \
--link euvat:euvat

## The JSON API

Expand Down