Skip to content

Commit

Permalink
Fix Dockerhub descritpion update. Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
hurlenko committed Apr 12, 2020
1 parent 75252d1 commit d89d427
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 21 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/dockerimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,21 +55,21 @@ jobs:
if: steps.releases.outputs.current != steps.releases.outputs.target
env:
TARGET_VERSION: ${{ steps.releases.outputs.target }}
DOCKERHUB_REPOSITORY: hurlenko/filebrowser
DOCKERHUB_USERNAME: hurlenko
DOCKERHUB_PASSWORD: ${{ secrets.DOCKERHUB_TOKEN }}
DOCKERHUB_REPOSITORY: ${{ secrets. DOCKERHUB_REPOSITORY }}
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_PASSWORD: ${{ secrets.DOCKERHUB_PASSWORD }}
run: |
echo $DOCKERHUB_PASSWORD | docker login --username $DOCKERHUB_USERNAME --password-stdin
docker buildx build --push --platform linux/amd64,linux/arm64,linux/arm/v7 --build-arg VERSION=$TARGET_VERSION --build-arg VCS_REF=${GITHUB_SHA::7} --build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` -t $DOCKERHUB_REPOSITORY:$TARGET_VERSION .
docker buildx build --push --platform linux/amd64,linux/arm64,linux/arm/v7 --build-arg VERSION=$TARGET_VERSION --build-arg VCS_REF=${GITHUB_SHA::7} --build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` -t $DOCKERHUB_REPOSITORY:latest .
# - name: Update DockerHub Description
# if: steps.releases.outputs.current != steps.releases.outputs.target
# uses: peter-evans/[email protected]
# env:
# DOCKERHUB_USERNAME: hurlenko
# DOCKERHUB_PASSWORD: ${{ secrets.DOCKERHUB_TOKEN }}
# DOCKERHUB_REPOSITORY: hurlenko/filebrowser
- name: Update DockerHub Description
if: steps.releases.outputs.current != steps.releases.outputs.target
uses: peter-evans/[email protected]
env:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_PASSWORD: ${{ secrets.DOCKERHUB_PASSWORD }}
DOCKERHUB_REPOSITORY: ${{ secrets. DOCKERHUB_REPOSITORY }}

- name: Create new Github release
if: steps.releases.outputs.current != steps.releases.outputs.target
Expand Down
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,28 +5,28 @@
# [filebrowser](https://github.com/filebrowser/filebrowser) inside a [docker container](https://hub.docker.com/r/hurlenko/filebrowser)

[![Latest Github release](https://img.shields.io/github/release/hurlenko/filebrowser-docker.svg)](https://github.com/hurlenko/filebrowser-docker/releases/latest)
[![Image size](https://images.microbadger.com/badges/image/hurlenko/filebrowser.svg)](https://microbadger.com/images/hurlenko/filebrowser)
[![Image size](https://img.shields.io/docker/image-size/hurlenko/aria2-ariang/latest)](https://hub.docker.com/r/hurlenko/filebrowser)
[![Docker Pulls](https://img.shields.io/docker/pulls/hurlenko/filebrowser.svg)](https://hub.docker.com/r/hurlenko/filebrowser/)
[![Docker Stars](https://img.shields.io/docker/stars/hurlenko/filebrowser.svg)](https://hub.docker.com/r/hurlenko/filebrowser/)

## Introduction

filebrowser provides a file managing interface within a specified directory and it can be used to upload, delete, preview, rename and edit your files. It allows the creation of multiple users and each user can have its own directory. It can be used as a standalone app or as a middleware.

## 🚩 Table of Contents
## Table of Contents

- [Screenshots](#-screenshots)
- [Features](#-features)
- [Usage](#-usage)
- [Screenshots](#screenshots)
- [Features](#features)
- [Usage](#usage)
- [Docker](#docker)
- [docker-compose](#docker-compose)
- [Nginx](#running-behind-nginx-proxy)
- [Ports desription](#ports-description)
- [Supported environment variables](#supported-environment-variables)
- [Supported volumes](#supported-volumes)
- [Building](#-building)
- [Building](#building)

## πŸ–ΌοΈ Screenshots
## Screenshots

### Desktop

Expand All @@ -38,13 +38,13 @@ filebrowser provides a file managing interface within a specified directory and
|---|---|
![Preview](https://user-images.githubusercontent.com/18035960/67269128-c7873000-f4be-11e9-89be-1fe33c3e973c.png) | ![Preview](https://user-images.githubusercontent.com/18035960/67269151-d4a41f00-f4be-11e9-9b10-ec08c3a96692.png)

## 🎨 Features
## Features

- Confgurable via environment variables
- Can be run using different user
- Supports multiple architectures, tested on Ubuntu 18.04 (`amd64`), Rock64 🍍 (`arm64`) and Raspberry Pi πŸ“ (`arm32`)

## πŸ“™ Usage
## Usage

### Docker

Expand Down Expand Up @@ -120,7 +120,7 @@ location /filebrowser {
}
```

### Ports desription
### Ports description

- `8080` - default filebrowser port

Expand All @@ -133,7 +133,7 @@ The environment variables are prefixed by `FB_` followed by the option name in c
- `/data` - Data directory to browse
- `/config` - `filebrowser.db` location

## πŸ”¨ Building
## Building

```bash
git clone https://github.com/hurlenko/filebrowser-docker
Expand Down

0 comments on commit d89d427

Please sign in to comment.