Operations grimoire/Docker engine: Difference between revisions

From Nasqueron Agora
(+Equatower)
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 5: Line 5:
== Checklists ==
== Checklists ==
* [[Operations grimoire/Restart a Docker engine|Restart]]
* [[Operations grimoire/Restart a Docker engine|Restart]]
* [[Operations grimoire/Dwellers to DevCentral|Dwellers to DevCentral]]
* [[Operations grimoire/Git operations in production containers|Git operations in production containers]]
* [[Operations grimoire/Add a service to Docker PaaS|Add a service to Docker PaaS]]
* [[Operations grimoire/Docker Hub|Docker Hub]]
== Tips ==
=== Forward port as hotfix ===
Pending redeployment of a container to bind a new port, you can forward traffic manually through socat:
    socat TCP4-LISTEN:15692,fork,reuseaddr,bind=172.27.27.5 TCP4:172.17.0.3:15692 &
[[Category:Operations grimoire|Docker]]
[[Category:Docker]]

Latest revision as of 21:55, 24 October 2024

A Docker engine powers all our J2EE/Python/Ruby services, our broker and our newest PHP apps.

It's currently hosted on Dwellers and Equatower.

Checklists

Tips

Forward port as hotfix

Pending redeployment of a container to bind a new port, you can forward traffic manually through socat:

   socat TCP4-LISTEN:15692,fork,reuseaddr,bind=172.27.27.5 TCP4:172.17.0.3:15692 &