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
- Host: GitHub
- URL: https://github.com/emilrex/prefect-docker-compose
- Owner: EmilRex
- Created: 2024-04-11T18:38:07.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-14T16:50:23.000Z (over 1 year ago)
- Last Synced: 2025-01-10T04:54:26.548Z (over 1 year ago)
- Topics: docker-compose, prefect
- Language: Python
- Homepage: https://www.prefect.io/
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```