diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..015690f --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,17 @@ +version: '3.6' +services: + legba: + image: evilsocket/legba:latest + # make sure that the endpoints visible on the host network + # are visible from the container as well + network_mode: host + # used to persist data + volumes: + # maps the current working directory to /data + - .:/data + + deploy: + resources: + limits: + # makes sure that all cpu are used + cpus: '0.000'