Initial commit

This commit is contained in:
2023-09-09 14:53:02 +02:00
commit e0ee091a7b
33 changed files with 788 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
# Uncomment and change the following variables if you want to use them.
#RESTART=unless-stopped
#CYBERCHEF_CONTAINER_NAME=CyberChef
#CYBERCHEF_TAG=latest
#CYBERCHEF_PORT=8000
+10
View File
@@ -0,0 +1,10 @@
services:
# CyberChef
cyberchef:
container_name: ${CYBERCHEF_CONTAINER_NAME:-CyberChef}
image: mpepping/cyberchef:${CYBERCHEF_TAG:-latest}
restart: ${RESTART:-unless-stopped}
healthcheck:
test: curl -f http://localhost:8000/ || exit 1
ports:
- ${CYBERCHEF_PORT:-8000}:8000