tirreno is an open-source security framework.
Run:
curl -sL tirreno.com/t.yml | docker compose -f - up -dYou can run the tirreno container with volume to keep persistent data in the following way:
1. Create network:
docker network create tirreno-network2. 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:153. Add tirreno:
docker run --name tirreno-app --network tirreno-network -p 8585:80 -v tirreno:/var/www/html -d tirrenoCheck tirreno Administrator documentation