diff --git a/README.md b/README.md index 7ebc44a..3190581 100644 --- a/README.md +++ b/README.md @@ -5,11 +5,13 @@ # Finch Daemon -The Finch Daemon project is an open source container runtime engine that enables users to integrate any software that uses Docker's RESTful APIs as a programmatic dependency. Some core features include: +The Finch Daemon project is an open source container runtime engine that enables users to integrate software that uses Docker's RESTful APIs as a programmatic dependency. Some core features include: - - Full implementation of the [Docker API Spec v1.43](https://docs.docker.com/engine/api/v1.43/) + - A partial implementation of the [Docker API Spec v1.43](https://docs.docker.com/engine/api/v1.43/) - Native support for Linux environments +The Finch Daemon project is actively taking contributions, especially to improve API compatibility. + ## Onboarding & Development Please review [CONTRIBUTING.md](./CONTRIBUTING.md) for onboarding, as well as for an overview of the development cycle for this project. diff --git a/cmd/finch-daemon/main.go b/cmd/finch-daemon/main.go index 5cadf94..9b37659 100644 --- a/cmd/finch-daemon/main.go +++ b/cmd/finch-daemon/main.go @@ -62,7 +62,7 @@ func main() { RunE: runAdapter, SilenceUsage: true, } - rootCmd.Flags().StringVar(&options.socketAddr, "socketAddr", defaultFinchAddr, "server listening Unix socket address") + rootCmd.Flags().StringVar(&options.socketAddr, "socket-addr", defaultFinchAddr, "server listening Unix socket address") rootCmd.Flags().BoolVar(&options.debug, "debug", false, "turn on debug log level") rootCmd.Flags().IntVar(&options.socketOwner, "socket-owner", -1, "Uid and Gid of the server socket") if err := rootCmd.Execute(); err != nil {