Skip to content

Commit

Permalink
Version bump 1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dvkch committed Jan 24, 2024
1 parent 76437df commit f167890
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Harbor

Just another CLI tool to easily access Docker Composer and Docker Swarm containers via SSH.
Just another CLI tool to easily access Docker Composer containers, Docker Swarm services and K3s pods via SSH.

The idea is to replicate some abilities of the `Heroku CLI` tool but for self hosted stacks.

Expand All @@ -19,8 +19,8 @@ The configuration file should reside in `~/.config/harbor.json`, and formatted a
"host": "vps.example.com", // the actual host
"port": 2200, // port, defaults to 22 if missing
"user": "ubuntu", // user, defaults to root if missing
"provider": "swarm", // stack used, possible values are `compose` or `swarm` for now
"nodes": { // list the correspondances of node name -> host
"provider": "swarm", // stack used, possible values are `compose`, `swarm` or `k3s` for now
"nodes": { // list the correspondances of node name -> host (used for swarm)
"node1": "vps.example.com",
"node2": "vps-secondary.example.com",
}
Expand All @@ -38,6 +38,7 @@ OVERVIEW: Harbor
USAGE: harbor <subcommand>

OPTIONS:
--version Show the version.
-h, --help Show help information.

SUBCOMMANDS:
Expand All @@ -47,6 +48,7 @@ SUBCOMMANDS:
reload Restart a service
db-backup Download a backup of the DB
docker-init Create default files for Docker deployment
completion Update harbor completion scripts

See 'harbor help <subcommand>' for detailed help.
```
Expand Down
2 changes: 1 addition & 1 deletion Sources/Harbor/Harbor.swift
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ struct Harbor: ParsableCommand {

return .init(
abstract: "Harbor",
version: "1.2",
version: "1.3",
subcommands: commands,
defaultSubcommand: nil
)
Expand Down

0 comments on commit f167890

Please sign in to comment.