Run the application

Start, stop, and verify a Docker Compose deployment.

These commands assume you’re in the folder that contains docker-compose.yml.

Start

docker compose up -d

Check status

docker compose ps

View logs

docker compose logs -f

Restart

docker compose restart

Stop

docker compose down

Verify UI is accesibe

Open the UI at:

  • http://<FRONTEND_DOMAIN>:<FRONTEND_PORT>

Use the initial admin credentials you configured in .env.

Next: Updating the application.

Last updated

Was this helpful?