-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use Github container registry over docker hub
- Loading branch information
Showing
1 changed file
with
3 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
# DAVOxide | ||
> A simple WebDAV server with a basic web UI, authentication, and permissions. | ||
![Docker Pulls](https://img.shields.io/docker/pulls/akrantz/davoxide?style=for-the-badge) | ||
![Docker Image Version (latest semver)](https://img.shields.io/docker/v/akrantz/davoxide?style=for-the-badge) | ||
![Docker Image Size (latest semver)](https://img.shields.io/docker/image-size/akrantz/davoxide?style=for-the-badge) | ||
![GitHub Workflow Status (branch)](https://img.shields.io/github/workflow/status/akrantz01/davoxide/Build/main?style=for-the-badge) | ||
![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/akrantz01/davoxide?style=for-the-badge) | ||
|
||
DAVOxide provides a simple and lightweight interface to a folder on your server through WebDAV and a simple web UI. | ||
Most operations are intended to be performed over WebDAV such as modifying files or directories. | ||
|
@@ -25,7 +24,7 @@ docker run -d --name davoxide \ | |
-e BASE_PATH=/files \ | ||
-e DATABASE_URL=postgres://postgres:[email protected]:5432/postgres \ | ||
-v $PWD:/files \ | ||
akrantz/davoxide:latest | ||
ghcr.io/akrantz01/davoxide:latest | ||
``` | ||
|
||
## Usage | ||
|