Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Traefik | 42,264 | 18 | a day ago | 160 | September 16, 2022 | 606 | mit | Go | ||
The Cloud Native Application Proxy | ||||||||||
Awesome Compose | 22,256 | 2 days ago | 7 | April 23, 2021 | 99 | cc0-1.0 | HTML | |||
Awesome Docker Compose samples | ||||||||||
Nginx Proxy | 16,901 | 3 days ago | 448 | mit | Python | |||||
Automated nginx proxy for Docker containers using docker-gen | ||||||||||
Apisix | 11,520 | 17 hours ago | 655 | apache-2.0 | Lua | |||||
The Cloud-Native API Gateway | ||||||||||
Telepresence | 5,692 | 4 | 12 hours ago | 355 | September 23, 2022 | 403 | other | Go | ||
Local development against a remote Kubernetes or OpenShift cluster | ||||||||||
Proxypool | 4,411 | a month ago | 33 | mit | Python | |||||
An Efficient ProxyPool with Getter, Tester and Server | ||||||||||
Netflix Proxy | 3,430 | 4 months ago | 5 | mit | Python | |||||
Smart DNS proxy to watch Netflix | ||||||||||
Gluetun | 3,101 | a day ago | 51 | April 25, 2021 | 125 | mit | Go | |||
VPN client in a thin Docker container for multiple VPN providers, written in Go, and using OpenVPN or Wireguard, DNS over TLS, with a few proxy servers built-in. | ||||||||||
Lamda | 2,482 | 8 days ago | 3 | Python | ||||||
⚡️ Android reverse engineering & automation framework | 史上最强安卓抓包/逆向/HOOK & 云手机/远程桌面/自动化辅助框架,你的工作从未如此简单快捷。 | ||||||||||
Proxy.py | 2,364 | 7 | 9 | 15 hours ago | 37 | June 28, 2022 | 70 | bsd-3-clause | Python | |
⚡ Fast • 🪶 Lightweight • 0️⃣ Dependency • 🔌 Pluggable • 😈 TLS interception • 🔒 DNS-over-HTTPS • 🔥 Poor Man's VPN • ⏪ Reverse & ⏩ Forward • 👮🏿 "Proxy Server" framework • 🌐 "Web Server" framework • ➵ ➶ ➷ ➠ "PubSub" framework • 👷 "Work" acceptor & executor framework |
The files in this repository are used to create a Docker container running a MISP ("Malware Information Sharing Platform") instance.
I rewrote the Docker file to split the components in multiple containers (which is more in the philosophy of Docker). Therefore there is no longer a Dockerfile in the root directory.
The MISP container needs at least a MySQL container to store the data. By default it listen to port 443 and port 80, which is redirected to 443.
The build is based on Ubuntu and will install all the required components, using the INSTALL script provided in the MISP repository.
Using the Install script has the advantage that we can rely on a tested installation routine which is maintained and kept up to date. The amount of custom work to be done in the Dockerfile and run.sh files is limited to the necessary to make MISP container compliant.
The following configuration steps are performed automatically:
config.php
config.php
$ git clone https://github.com/MISP/misp-docker
$ cd misp-docker
# Copy template.env to .env (on the root directory) and edit the environment variables at .env file
$ cp template.env .env
$ vi .env
$ docker-compose build
or
$ docker-compose -f docker-compose.yml build
$ docker-compose up
or
$ docker-compose -f docker-compose.yml up