Skip to content
This repository has been archived by the owner on Feb 15, 2023. It is now read-only.

Latest commit

 

History

History
34 lines (23 loc) · 912 Bytes

docker.md

File metadata and controls

34 lines (23 loc) · 912 Bytes

Docker

Install Docker

One line

curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh

More info

More info is available at docker.com/install

Run

With Docker

You can run this out of the box with docker

docker run -p 8081:80 mk0x/docker-fork-scan

and navigate to the open port at localhost:8081

With docker-compose

Find an example docker-compose.yml in the repository.

There is a debug docker-compose config and a production ready docker-compose config YAML as well.

Base image

You can find the base image tiangolo/uwsgi-nginx-flask:python3.7-alpine3.7 at hub.docker.com/tiangolo