diff options
author | Kristofer Hallin <kristofer@sunet.se> | 2021-10-06 11:22:38 +0200 |
---|---|---|
committer | Kristofer Hallin <kristofer@sunet.se> | 2021-10-06 11:22:38 +0200 |
commit | 69fed87bd4a627b60d1c3d05852a6a3e6075c952 (patch) | |
tree | 44cf0abc35dceabcc56e4d4ba58a9e24d7913a6b /docker/collector/setup.sh | |
parent | 579886d2176a869f55c2d0af4d1a1e30b8576105 (diff) |
Added Collector container.
Diffstat (limited to 'docker/collector/setup.sh')
-rwxr-xr-x | docker/collector/setup.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docker/collector/setup.sh b/docker/collector/setup.sh new file mode 100755 index 0000000..2289487 --- /dev/null +++ b/docker/collector/setup.sh @@ -0,0 +1,8 @@ +#!/bin/sh + +pip3 install uwsgi +cd /opt/collector/ +git checkout khn.nginx_wsgi +virtualenv venv +. venv/bin/activate +pip3 install -r requirements.txt |