Question
The recommended production setup for Hookdeck Outpost suggests running three separate container instances, each with the SERVICE environment variable set to a different role: api, log, and delivery.
This setup is excellent for scalability and high availability in production. However, it's a bit too much for local development environments where simplicity is preferred.
Is it possible to run a single Outpost container instance with all three roles (api, log, and delivery) enabled simultaneously for use in development environments?
If so, how should the SERVICE variable be configured? Can it accept a comma-separated list (e.g., SERVICE=api,log,delivery) or is there another way?
Context
I'm building on a multi-tenant SaaS platform and would like to keep the local stack minimal during development while still being able to test the full Outpost behavior end-to-end.