Skip to content
Kinnaird McQuade edited this page Sep 27, 2024 · 1 revision

Building:

docker build -t insecureapps/tiredful-api:latest .
docker push insecureapps/tiredful-api:latest

Docker compose:

# https://github.com/vulnerable-apps/Tiredful-API
services:
  tiredful:
    image: insecureapps/tiredful-api:latest
    container_name: tiredful
    ports:
    - 8000:8000
    restart: always

The app is pretty unstable. It could use an update to use gunicorn or something. Right now it's just using Django's runserver which is not really stable enough for scanning.

Clone this wiki locally