added development docker compose file

This commit is contained in:
carnivuth
2026-01-17 18:12:41 +01:00
parent 8deabe8ce0
commit 00b222b754

29
docker-compose-dev.yaml Normal file
View File

@@ -0,0 +1,29 @@
---
services:
krawl:
build:
context: .
dockerfile: Dockerfile
container_name: krawl-server
ports:
- "5000:5000"
environment:
- CONFIG_LOCATION=config.yaml
# set this to change timezone, alternatively mount /etc/timezone or /etc/localtime based on the time system management of the host environment
#- TZ=${TZ}
volumes:
- ./wordlists.json:/app/wordlists.json:ro
- ./config.yaml:/app/config.yaml:ro
- ./logs:/app/logs
- ./exports:/app/exports
- ./data:/app/data
restart: unless-stopped
develop:
watch:
- path: ./Dockerfile
action: rebuild
- path: ./src/
action: sync+restart
target: /app/src
- path: ./docker-compose-dev.yaml
action: rebuild