Skip to Content
👷Please note that Dboxed is in a very early stage, including the documentation. Things are being built right now! 👷 Follow @codablock on X for updates!
Docs
docker-compose.yaml
name: quickstart services: whoami: image: traefik/whoami command: - --name=iamdboxed localtunnel: image: node:25-alpine entrypoint: ["sh", "-c"] depends_on: whoami: condition: service_started command: - | apk add curl socat npm install -g localtunnel TUNNEL_PASSWORD=$(curl https://loca.lt/mytunnelpassword) echo "Your tunnel password is: $$TUNNEL_PASSWORD" socat TCP-LISTEN:8080,reuseaddr,fork TCP:whoami:80 & lt --port 8080 hello-log: image: alpine entrypoint: ["sh", "-c"] command: - | while true; do echo "Hello, current time is $(date)"; sleep 5; done
Last updated on