Hi,
I’m trying to send a 2MB file to my app and I can’t find a way except copy/pasting it.
Is it possible to use fly ssh
(or some other mechanism) to ftp some file to a server?
Hi,
I’m trying to send a 2MB file to my app and I can’t find a way except copy/pasting it.
Is it possible to use fly ssh
(or some other mechanism) to ftp some file to a server?
You can do it with normal ssh once you set up a wireguard tunnel, and fly ssh issue
. scp
/ rsync
has to be installed in the container. Connect to one of the .internal
dns names e.g. ssh -6 -i fly-ssh-key-file root@top1.nearest.of.appname.internal
Thanks @dholth!