Skip to content
This repository has been archived by the owner on Apr 30, 2022. It is now read-only.

Commit

Permalink
docker
Browse files Browse the repository at this point in the history
  • Loading branch information
wesyoung committed May 8, 2018
1 parent 251f63a commit 88bf7d9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions docker/supervisord.conf
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@ loglevel = DEBUG

[program:cif-router]
user=cif
command = cif-router --config /etc/cif/cif-router.yml --runtime-path=/var/lib/cif
command = cif-router --config /etc/cif/cif-router.yml --runtime-path=/var/lib/cif -d
autostart = true
stderr_logfile = /var/log/cif/cif-router.log
stopsignal = INT
environment =
CIF_HTTPD_LISTEN=0.0.0.0

[program:cif-httpd]
user=cif
command = cif-httpd --runtime-path=/var/lib/cif
command = cif-httpd --runtime-path=/var/lib/cif -d
autostart = true
stderr_logfile = /var/log/cif/cif-httpd.log
stopsignal = INT
environment =
CIF_HTTPD_LISTEN=0.0.0.0

#[program:csirtg-fm]
#user=cif
Expand Down
8 changes: 4 additions & 4 deletions docker_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

set -e

docker stop verbose-robot
docker rm verbose-robot
docker image remove csirtgadgets/verbose-robot
#docker stop verbose-robot
#docker rm verbose-robot
#docker image remove csirtgadgets/verbose-robot

rm -rf dist/*
python3 setup.py sdist

docker build --rm=true --force-rm=true -t csirtgadgets/verbose-robot -f docker/Dockerfile .
docker build --rm=true --force-rm=true -t csirtgadgets/verbose-robot -f docker/Dockerfile .

0 comments on commit 88bf7d9

Please sign in to comment.