Skip to content

Commit

Permalink
new: added docker-compose.yml (closes #9)
Browse files Browse the repository at this point in the history
  • Loading branch information
evilsocket committed Nov 4, 2023
1 parent a979771 commit 6701013
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -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'

0 comments on commit 6701013

Please sign in to comment.