← Todos os guias
Snipe-IT
Snipe-IT is a free, open-source IT asset management system for tracking hardware, licenses, accessories, and consumables, including checkout history, depreciation, and audit logs.
Este guia foi elaborado a partir da documentação oficial do Snipe-IT, ligada acima — verifique sempre lá os nomes exatos dos pacotes/versões antes de executar estes comandos num servidor de produção, uma vez que as versões da distribuição e do projeto mudam com o tempo.
1Create a working directory
mkdir snipeit && cd snipeit2Download the official Compose and env files
curl https://raw.githubusercontent.com/snipe/snipe-it/master/docker-compose.yml --output docker-compose.ymlcurl https://raw.githubusercontent.com/snipe/snipe-it/master/.env.docker --output .env3Generate an application key
docker compose run --rm app php artisan key:generate --showCopy the generated key into APP_KEY in your .env file.
4Configure .env
At minimum, set APP_URL to how you'll reach the instance (e.g. http://localhost:8000), change default database/mail passwords, and pin APP_VERSION in docker-compose.yml to a specific release rather than 'latest'.
5Start Snipe-IT
docker compose up -dChanging .env values later requires 'docker compose up -d' again (recreation), not just a restart.
6First login
Browse to http://your_ip:8000; the setup wizard runs automatically on first visit to create the database schema and your admin account.