An open API service indexing awesome lists of open source software.

https://github.com/emilrex/prefect-docker-compose

Deploy Prefect OSS locally using docker-compose
https://github.com/emilrex/prefect-docker-compose

docker-compose prefect

Last synced: about 2 months ago
JSON representation

Deploy Prefect OSS locally using docker-compose

Awesome Lists containing this project

README

          

# prefect-docker-compose

Local testing with docker compose.

```bash
# Start the services in the background
docker compose up -d

# Create and use a profile pointing to the services
prefect profile create compose
prefect profile use compose
prefect config set PREFECT_API_URL=http://127.0.0.1:4200/api

# Open the UI in your default browser
open http://127.0.0.1:4200/

# Deploy the flows
python deploy.py

# To follow the worker logs
docker compose logs -f process-worker docker-worker
```