Skip Navigation
Jump
Tell me your most exotic selfhosted solution, the crazier, the better, no 0815 solutions!
  • The only thing slightly different that I self host is WebODM. It's open drone mapping software. You can upload 10s or 100s of photos of an area and it can generate an orthomosaic, kind of like Google maps. It has a lot of other features too.

    I don't really use it, I just play with it from time to time.

    0
  • Jump
    Trying to set up Cloudflare tunnel ssh using Termius ios app and I'm failing spectacularly.
  • Ssh requires you to install the cloudflared client on your device that you are try to connect with.

    Cloudflare Tunnels is really only food for http/s, all other protocols require a cloudflared client.

    1
  • Jump
    Pipe between containers? What do you guys use?
  • Just use docker-compose? Put multiple containers in one compose file. Create an internal network for them to communicate with.

    1
  • Jump
    Can't get Apache Guacamole to work. Error after initial login
  • Your docker-compose looks overly complicated..

    Here is mine.

    version: "3.7"
    networks:
      docknet:
    	external: true
    services:
      guacamole:
    	image: jwetzell/guacamole
    	container_name: guacamole
    	volumes:
    	  - postgres:/config
    	ports:
    	  - 8080:8080
    	networks:
    	  docknet:
    		ipv4_address: 192.168.1.8
    	restart: unless-stopped
    volumes:
      postgres:
    	driver: local
    #default login is guacadmin/guacadmin
    
    1