Skip to content

Commit e22c156

Browse files
authored
fix: doc nits and parameter casing (#57)
Signed-off-by: Justin Alvarez <[email protected]>
1 parent 3017cf4 commit e22c156

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@
55

66
# Finch Daemon
77

8-
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:
8+
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:
99

10-
- Full implementation of the [Docker API Spec v1.43](https://docs.docker.com/engine/api/v1.43/)
10+
- A partial implementation of the [Docker API Spec v1.43](https://docs.docker.com/engine/api/v1.43/)
1111
- Native support for Linux environments
1212

13+
The Finch Daemon project is actively taking contributions, especially to improve API compatibility.
14+
1315
## Onboarding & Development
1416

1517
Please review [CONTRIBUTING.md](./CONTRIBUTING.md) for onboarding, as well as for an overview of the development cycle for this project.

cmd/finch-daemon/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ func main() {
6262
RunE: runAdapter,
6363
SilenceUsage: true,
6464
}
65-
rootCmd.Flags().StringVar(&options.socketAddr, "socketAddr", defaultFinchAddr, "server listening Unix socket address")
65+
rootCmd.Flags().StringVar(&options.socketAddr, "socket-addr", defaultFinchAddr, "server listening Unix socket address")
6666
rootCmd.Flags().BoolVar(&options.debug, "debug", false, "turn on debug log level")
6767
rootCmd.Flags().IntVar(&options.socketOwner, "socket-owner", -1, "Uid and Gid of the server socket")
6868
if err := rootCmd.Execute(); err != nil {

0 commit comments

Comments
 (0)