Service Infrastructure Environments.
Isolated sets of services your application depends on. Deploy with Docker Compose, connect from workspaces, and intercept traffic.
Isolated service infrastructure.
Deploy and manage your application services in isolated environments with full Docker Compose compatibility.
Docker Compose Compatible
Use your existing compose files. If it runs in Docker, it runs here with zero modifications.
Network Isolation
Each environment runs in its own network namespace. No cross-contamination between staging and production.
Connect from Workspaces
Connect any workspace to access services by name. DNS resolution and routing handled automatically.
Clone & Fork
Create copies of environments for isolated testing. Fork production to debug without affecting users.
Service Intercepts
Route traffic from any service to your workspace. Debug with real requests without redeploying.
Team Collaboration
Share environments with your team. Multiple developers can connect and work with the same services.
Docker Compose Ready
Bring your existing Docker Compose files. Define services, networks, and volumes—everything you need to run your stack.
# compose.yaml
services:
api:
image: my-api:latest
ports: ["8080:8080"]
db:
image: postgres:16
redis:
image: redis:alpineReady to deploy your services?
Create your first environment in minutes.