Files
hipctf/docker-compose.yml
m0rph3us1987 40f496c3f2 Made app more modular.
Fixed some bugs.
Added some functionality.
2026-01-21 18:59:14 +01:00

16 lines
386 B
YAML

services:
ctf-platform:
build: .
container_name: hipctf
ports:
- "3001:3000"
volumes:
# Map the local data directory to the container's DB path
- ./data:/app/data
# Map the uploads directory for persistent challenge files
- ./uploads:/app/uploads
environment:
- NODE_ENV=production
- PORT=3000
restart: unless-stopped