This single command downloads all the required Docker images (the Ente server, a Postgres database, and a MinIO object store) and starts them together. The '-d' flag runs everything in the background so your terminal stays free. The first run takes a few minutes because it downloads several hundred megabytes.
$ docker compose -f scripts/compose/docker-compose.yml up -d
What you should see
Docker prints lines like 'Pulling ...', then 'Creating ...' or 'Started ...'. Finally you see 'Container ente-server-1 Started'. No red ERROR lines.
This might happen
Port 8080 or 3200 is already in use — Docker reports 'address already in use'
Open scripts/compose/.env and change the conflicting port numbers (ENTE_SERVER_PORT, MINIO_PORT) to unused ports like 8181 and 3201, then re-run the command.