Deploy a container, get a live URL
A user submits an image name, a Dockerfile or a compose file. The Docker SDK builds and runs it on a remote host, then the container is tagged with Traefik labels so the reverse proxy routes traffic to it, and an OVH DNS record is created for its name.
Seconds later the app is reachable at
<name>.dockeronline.ovh, with ports and volumes
provisioned automatically. No manual proxy config, no manual DNS.
labels = {
"traefik.enable": "true",
"traefik.http.routers.NAME.rule":
"Host(`NAME.dockeronline.ovh`)",
"traefik.http.routers.NAME.entrypoints": "web",
}