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"]}
| package main | |
| import ( | |
| "fmt" | |
| "log" | |
| "golang.org/x/crypto/bcrypt" | |
| ) | |
| func main() { |
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"]}
| stream { | |
| log_format basic '$remote_addr [$time_local] ' | |
| '$protocol $status $bytes_sent $bytes_received ' | |
| '$session_time'; | |
| access_log /var/log/nginx/access.log basic; | |
| error_log /var/log/nginx/error.log debug; | |
| include /etc/nginx/stream.conf.d/*.conf; |
Voy a intentar resumir los pasos que he dado para llevar a cabo la configuración de RetroPie junto con Kodi en Kodibuntu.
Me basé en el turorial de este post:
| package main | |
| import ( | |
| "bytes" | |
| "fmt" | |
| "io" | |
| "log" | |
| "mime/multipart" | |
| "net/http" | |
| "os" |
| import javafx.application.Application; | |
| import javafx.beans.binding.Bindings; | |
| import javafx.beans.value.*; | |
| import javafx.scene.*; | |
| import javafx.scene.control.*; | |
| import javafx.scene.layout.*; | |
| import javafx.scene.paint.Color; | |
| import javafx.scene.shape.*; | |
| import javafx.stage.Stage; |
| #!/bin/sh | |
| # | |
| # An example hook script to check the commit log message taken by | |
| # applypatch from an e-mail message. | |
| # | |
| # The hook should exit with non-zero status after issuing an | |
| # appropriate message if it wants to stop the commit. The hook is | |
| # allowed to edit the commit message file. | |
| # | |
| # To enable this hook, rename this file to "applypatch-msg". |