Avatar

amcco1B

amcco1@alien.top
Joined
0 posts • 6 comments
Direct message

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.

permalink
report
parent
reply

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.

permalink
report
reply

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.

permalink
report
reply

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

permalink
report
reply

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
permalink
report
reply