11 lines
309 B
YAML
11 lines
309 B
YAML
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
|