diff --git a/technology/applications/SSH.md b/technology/applications/SSH.md index 08a08bc..972a15c 100644 --- a/technology/applications/SSH.md +++ b/technology/applications/SSH.md @@ -83,6 +83,7 @@ Host myserver Hostname server-address Port port IdentityFile ~/.ssh/id_rsa + User you ProxyJump host ProxyCommand corkscrew %h %p # HTTP Proxy ``` diff --git a/technology/applications/package managers/Flatpak.md b/technology/applications/package managers/Flatpak.md index 184c3e5..3811ad1 100644 --- a/technology/applications/package managers/Flatpak.md +++ b/technology/applications/package managers/Flatpak.md @@ -20,7 +20,7 @@ Runtimes are collections of libraries and services that applications can use. Fl A Flatpak ref is a specific version of a runtime or an application. It is identified by a unique hash, allowing multiple versions to coexist on a system. ## Usage -#refactor +#refactor #notnow ```shell flatpak install # Install applications flatpak update # Update applications diff --git a/technology/tools/Docker Compose.md b/technology/tools/Docker Compose.md index e99d087..ec7544d 100644 --- a/technology/tools/Docker Compose.md +++ b/technology/tools/Docker Compose.md @@ -368,7 +368,7 @@ secrets: ``` ## Docker Compose Deploy -The Compose Deploy Specification lets you declare additional metadata on services so Compose gets relevant data to allocate adequate resources on the platform and configure them to match your needs. +The Compose Deploy Specification lets you declare additional metadata on services so Compose gets relevant data to allocate adequate resources on the platform and configure them to match your needs. [Docker Swarm](Docker%20Swarm.md) respects these specifications. ### `mode` `mode` defines the replication model used to run the service on the platform. Either `global`, exactly one container per physical node, or `replicated`, a specified number of containers. The default is `replicated`.