MISP-dockerized-proxy

Quick Reference

Project Information

Travis Master
Docker Size & Layers
Latest Docker Version
Commit for Latest Docker Version

How to Use this Image

Available Environment Variables

Environment Variables Example Type
HOSTNAME: ${myHOSTNAME} misp.example.com REQUIRED
HTTP_SERVERADMIN: ${HTTP_SERVERADMIN} support@example.com REQUIRED
HTTP_PROXY: ${HTTP_PROXY} http://proxy.example.com:3128 OPTIONAL
HTTPS_PROXY: ${HTTPS_PROXY} http://proxy.example.com:3128 OPTIONAL
NO_PROXY: ${NO_PROXY} internal.example.com example.com OPTIONAL
IP: ${HTTP_ALLOWED_IP} 192.157.12.2 8.8.8.8 172.16.0.0/16 OPTIONAL

Using With docker-compose

services:
  ### MISP-proxy ###
  misp-proxy:
    image: dcso/misp-dockerized-proxy:${MISP_proxy_TAG}
    container_name: misp-proxy
    environment:
      HOSTNAME: ${myHOSTNAME}
      HTTP_SERVERADMIN: ${HTTP_SERVERADMIN}
      HTTP_PROXY: ${HTTP_PROXY}
      HTTPS_PROXY: ${HTTPS_PROXY}
      NO_PROXY: ${NO_PROXY}
      IP: ${HTTP_ALLOWED_IP}
    volumes:
    - misp-vol-proxy-conf:/etc/nginx/conf.d:rw
    - misp-vol-ssl:/etc/nginx/ssl:rw
    networks:
      misp-backend:
        aliases:
        - misp-proxy

Using with docker run

docker run \
    --name misp-proxy \
    -e NO_PROXY: ${NO_PROXY}  \
    -v misp-vol-db-data:/srv/misp-db:rw \
    -v misp-vol-pgp:/srv/misp-pgp:rw\
    -v misp-vol-proxy-conf:/srv/misp-proxy/conf.d:rw\
    -v misp-vol-redis-data:/srv/misp-redis:rw\
    -v misp-vol-server-MISP-cakeresque-config:/srv/misp-server/MISP/CakeResque/Config:rw\
    -v misp-vol-server-MISP-app-Config:/srv/misp-server/MISP/Config:rw\
    -v misp-vol-server-MISP-attachments:/srv/misp-server/MISP/app/files:rw\
    -v misp-vol-server-MISP-tmp:/srv/misp-server/MISP/app/tmp:rw\
    -v misp-vol-server-apache2-config-sites-enabled:/srv/misp-server/apache2/sites-enabled:rw\
    -v misp-vol-smime:/srv/misp-smime:rw\
    -v misp-vol-ssl:/srv/misp-ssl:rw\
    -v /var/run/docker.sock:/var/run/docker.sock:ro\
    image: dcso/misp-dockerized-proxy \

Documentation

You can also find the Dockerfile at Github.com.

License

View license information for the software contained in this image.

As with all Docker images, these likely also contain other software that may be under other licenses (such as Bash, etc., from the base distribution, along with any direct or indirect dependencies of the primary software being contained).

As for any pre-built image usage, it is the image user’s responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.