README.md
February 4, 2026 ยท View on GitHub
tirreno is an open-source security framework.
Quick start
Run:
curl -sL tirreno.com/t.yml | docker compose -f - up -d
Persistent Docker deploy
You can run the tirreno container with volume to keep persistent data in the following way:
1. Create network:
docker network create tirreno-network
2. Add PostgreSQL:
docker run -d --name tirreno-db --network tirreno-network -e POSTGRES_DB=tirreno -e POSTGRES_USER=tirreno -e POSTGRES_PASSWORD=secret -v ./db:/var/lib/postgresql/data postgres:15
3. Add tirreno:
docker run --name tirreno-app --network tirreno-network -p 8585:80 -v tirreno:/var/www/html -d tirreno
Install via docker-compose
Check tirreno Administrator documentation