[-] amcco1@alien.top 1 points 9 months ago

Yes. It's mainly used for construction, people will map a large construction site once a week or so, so that executives can see the progress.

[-] amcco1@alien.top 0 points 9 months ago

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.

[-] amcco1@alien.top 1 points 9 months ago

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.

[-] amcco1@alien.top 1 points 10 months ago

Just use docker-compose? Put multiple containers in one compose file. Create an internal network for them to communicate with.

[-] amcco1@alien.top 1 points 11 months ago

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

amcco1

joined 11 months ago