Skip to content

Commit

Permalink
fix: doc nits and parameter casing (#57)
Browse files Browse the repository at this point in the history
Signed-off-by: Justin Alvarez <[email protected]>
  • Loading branch information
pendo324 authored Sep 20, 2024
1 parent 3017cf4 commit e22c156
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion cmd/finch-daemon/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit e22c156

Please sign in to comment.