🐳 umbrel

An elegant home server OS. Run OpenClaw, store your files and photos, run a Bitcoin node, and do more with over 300 apps in the Umbrel App Store.

Docker Ready 2 Services 11,224 stars
1. Pull Image docker pull getumbrel/tor
2. 1-Click Launch Command docker run -d --name umbrel getumbrel/tor
3. Compose Deployment docker compose up -d
containers/tor/test/docker-compose.entrypoint.yml
Download .yml
version: '3.7'

services:
    web:
        image: mendhak/http-https-echo
        environment:
            HTTP_PORT: 8888

    tor:
        image: getumbrel/tor
        build: ..
        user: 1000:1000
        environment:
            HOME: /tmp
            HS_DIR: "web2"
            HS_VIRTUAL_PORT: "80"
            HS_HOST: "web"
            HS_PORT: "8888"
        entrypoint: /umbrel/entrypoint.sh
        volumes:
            - ./data:/data
            - ./entrypoint.sh:/umbrel/entrypoint.sh