Last active
August 20, 2021 19:59
-
-
Save imsahil007/4bcb0ced98bf114319de2e4e204749d0 to your computer and use it in GitHub Desktop.
Docker compose file for cve-bin-tool blog
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.3" | |
services: | |
cve_bin_tool: | |
environment: | |
- TZ=Asia/Kolkata | |
image: "imsahil007/cve-bin-tool:dev" | |
stdin_open: true | |
tty: true | |
volumes: | |
- /home/sahil/backend:/cve_bin_tool/backend | |
- /home/sahil/frontend:/cve_bin_tool/frontend | |
command: python -m cve_bin_tool.cli -u latest -n api /cve_bin_tool | |
#command: python -m cve_bin_tool.cli -u never /cve_bin_tool |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment