summaryrefslogtreecommitdiff
path: root/cmd/dockerd/docker_unix.go
blob: b7e30350ea67a29b4140945c11dcf6578023c598 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//go:build !windows
// +build !windows

package main

import (
	"io"

	"github.com/sirupsen/logrus"
)

func runDaemon(opts *daemonOptions) error {
	daemonCli := NewDaemonCli()
	return daemonCli.start(opts)
}

func initLogging(_, stderr io.Writer) {
	logrus.SetOutput(stderr)
}