Skip to content

Commit

Permalink
Bump version v1.5.0, upgraded dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
rigon committed Aug 10, 2023
1 parent 181988d commit f45c5e6
Show file tree
Hide file tree
Showing 8 changed files with 1,084 additions and 1,037 deletions.
1 change: 1 addition & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@ module.exports = {
plugins: ['react-refresh'],
rules: {
'react-refresh/only-export-components': 'warn',
"@typescript-eslint/no-explicit-any": 'warn',
},
}
7 changes: 5 additions & 2 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,11 @@ jobs:
cache-to: type=gha,mode=max

demo:
needs: build
name: Demo docker image
needs: build
runs-on: ubuntu-latest
# Run only when it is a release build
if: github.event_name == 'create' && startsWith(github.ref, 'refs/tags/v')

steps:
- name: Checkout
Expand All @@ -65,7 +67,8 @@ jobs:
uses: docker/metadata-action@v4
with:
images: rigon/photo-gallery
tags: type=semver,value=demo
tags: |
type=raw,value=demo
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
Expand Down
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Main features:
- [X] Show storage info
- [X] Metadata extraction from photos (EXIF)
- [X] Show photo location in a map
- [ ] Organize photos in bulk:
- [ ] Organize photos:
- [ ] Upload new photos
- [ ] Move photos
- [ ] Delete photos
Expand All @@ -70,6 +70,16 @@ Main features:
- [ ] Tool for renaming files
- [ ] Image resizing according with screen

## Quick start

Using docker, run:

docker run -p 3080:3080 --name photo-gallery rigon/photo-gallery:demo

That's it, enjoy! Just open in your browser [http://localhost:3080](http://localhost:3080).

This image however includes a demo gallery, for your own use please use `rigon/photo-gallery`.


## Build and Run

Expand Down Expand Up @@ -119,7 +129,7 @@ Server help:

### Docker

This project is distributed docker ([Photo Gallery Docker Hub page](https://hub.docker.com/r/rigon/photo-gallery)).
This project is distributed via docker ([Photo Gallery Docker Hub page](https://hub.docker.com/r/rigon/photo-gallery)).

The following example illustrates a case where you have two folders mounted with volumes, one with the collection of photos that is read-only and a recent folder with your still unorganized photos that is writable.

Expand Down Expand Up @@ -157,10 +167,12 @@ services:

`photo-gallery_data` can be safely deleted, however cached data must be regenerated.

<!--
### Port forwarding on Terminus under iOS
- https://support.termius.com/hc/en-us/articles/900006226306-I-can-t-use-the-iOS-app-in-the-background
- https://support.termius.com/hc/en-us/articles/4402044543897#location
-->


## Development
Expand Down
Loading

0 comments on commit f45c5e6

Please sign in to comment.