See this issue.
Docker best practise to Control and configure Docker with systemd.
-
Create
daemon.jsonfile in/etc/docker:{"hosts": ["tcp://0.0.0.0:2375", "unix:///var/run/docker.sock"]}
| #!/bin/bash | |
| ######################################################################################## | |
| # GCC 12 and GCC 13 installer: | |
| # - checks out GCC sources from official GCC Git repo; | |
| # - builds them and installs GCC binaries to $HOME/opt/gcc-x.y.z location | |
| # | |
| # Installed languages are: C/C++, Fortran and Go | |
| # | |
| # Prerequisites: Flex version 2.5.4 (or later) and tools & packages listed in |
| #!/bin/bash | |
| # https://gist.github.com/Hedgehogues/123eb27100608d248cf8370e666b29ce/ | |
| # declare array of tools | |
| declare -a tools=( | |
| "DataGrip" | |
| "CLion" | |
| "Rider" | |
| "WebStorm" | |
| "GoLand" |
See this issue.
Docker best practise to Control and configure Docker with systemd.
Create daemon.json file in /etc/docker:
{"hosts": ["tcp://0.0.0.0:2375", "unix:///var/run/docker.sock"]}