Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix installation instructions and endpoints #6

Merged
merged 2 commits into from
Feb 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Using the `sqlite3` tool, run the following commands:
```sh
$ sqlite3 /path/to/database.db
sqlite> create table auth("ID" INTEGER, name, pass TEXT, PRIMARY KEY("ID"));
sqlite> insert into auth values(1, "admin_user", "admin_password"); # Replace user and password with something secure
sqlite> insert into auth values(1, 'admin_user', 'admin_password'); # Replace user and password with something secure
```

If everything was set up correctly, the auth table should look like this:
Expand Down Expand Up @@ -173,7 +173,7 @@ Creates a new release for the given image.

Retrieves the most recent release from the image.

*Endpoint:* `http://[base_url]/[image]/latest`
*Endpoint:* `http://[base_url]/images/[image]/latest`

*Parameters:* None

Expand All @@ -197,7 +197,7 @@ Retrieves the most recent release from the image.

Searches for a specific release by its digest.

*Endpoint:* `http://[base_url]/[image]/[digest]`
*Endpoint:* `http://[base_url]/images/[image]/[digest]`

*Parameters:* None

Expand Down