Remix.run Logo
quantadev 4 days ago

I always just use "docker save" to generate a TAR file, then copy the TAR file to the server, and then run "docker load" (on the server) to install the TAR file on the target machine.

francislavoie 3 days ago | parent [-]

See the README, this results in only changed layers being sent instead of _everything_ which can save a lot of time.

quantadev 3 days ago | parent [-]

I'll do that. Thank you.