Sign inSign up

translucency/remotely

By translucency

Updated about 4 years ago
Archived

Image
24

1M+

translucency/remotely repository overview

UPDATE

The official repo has moved to https://hub.docker.com/r/immybot/remotely. Please use that from now on. Thanks!

Remotely

A Remotely server containing the pre-built server and clients.

GitHub: https://github.com/lucent-sea/remotely
Reddit: https://reddit.com/r/remotely_app
Website: https://remotely.one

Run

docker run -d --name remotely --restart unless-stopped -p 5000:5000 -v /remotely-data:/remotely-data translucency/remotely:latest

Docker Compose

version: "2"
services:
  remotely:
    image: translucency/remotely:latest
    ports:
      - 5000:5000
    volumes:
      - /remotely-data:/remotely-data

Nginx Config Example

server {
    listen        80;
    server_name   example.com *.example.com;
    location / {
        proxy_pass         http://localhost:5000;
        proxy_http_version 1.1;
        proxy_set_header   Upgrade $http_upgrade;
        proxy_set_header   Connection keep-alive;
        proxy_set_header   Host $host;
        proxy_cache_bypass $http_upgrade;
        proxy_set_header   X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header   X-Forwarded-Proto $scheme;
    }
    location /_blazor {	
        proxy_pass http://localhost:5000;	
        proxy_http_version 1.1;	
        proxy_set_header Upgrade $http_upgrade;	
        proxy_set_header Connection "upgrade";	
        proxy_set_header Host $host;	
        proxy_cache_bypass $http_upgrade;	
        proxy_set_header   X-Forwarded-For $proxy_add_x_forwarded_for;	
        proxy_set_header   X-Forwarded-Proto $scheme;	
    }	
    location /AgentHub {	
        proxy_pass http://localhost:5000;	
        proxy_http_version 1.1;	
        proxy_set_header Upgrade $http_upgrade;	
        proxy_set_header Connection "upgrade";	
        proxy_set_header Host $host;	
        proxy_cache_bypass $http_upgrade;	
        proxy_set_header   X-Forwarded-For $proxy_add_x_forwarded_for;	
        proxy_set_header   X-Forwarded-Proto $scheme;	
    }	
    location /ViewerHub {	
        proxy_pass http://localhost:5000;	
        proxy_http_version 1.1;	
        proxy_set_header Upgrade $http_upgrade;	
        proxy_set_header Connection "upgrade";	
        proxy_set_header Host $host;	
        proxy_cache_bypass $http_upgrade;	
        proxy_set_header   X-Forwarded-For $proxy_add_x_forwarded_for;	
        proxy_set_header   X-Forwarded-Proto $scheme;	
    }	
    location /CasterHub {	
        proxy_pass http://localhost:5000;	
        proxy_http_version 1.1;	
        proxy_set_header Upgrade $http_upgrade;	
        proxy_set_header Connection "upgrade";	
        proxy_set_header Host $host;	
        proxy_cache_bypass $http_upgrade;	
        proxy_set_header   X-Forwarded-For $proxy_add_x_forwarded_for;	
        proxy_set_header   X-Forwarded-Proto $scheme;	
    }
}

Caddyfile Example

remotely.example.com {
    reverse_proxy 127.0.0.1:5000
}

Tag summary

Content type

Image

Digest

sha256:3b351aed7

Size

717.4 MB

Last updated

about 4 years ago

docker pull translucency/remotely