From 9c9410db9181865fcae3e7e6b0ff214a7529282b Mon Sep 17 00:00:00 2001 From: Jordan Walster Date: Mon, 27 Jan 2025 20:43:26 +0000 Subject: [PATCH] chore: update docker-compose example --- README.md | 6 +++++- changelog.md | 10 ++++++++++ docker-compose-example.yml | 6 +++++- 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1c533b2..d357d15 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,11 @@ services: ports: - 8090:80 volumes: - - ./data:/var/www/html/data + - type: bind + source: ./data + target: /var/www/html/data + bind: + propagation: rshared environment: ADMIN_DOMAIN: photon.jrdn.dev SHARE_DOMAIN: ss.example.com diff --git a/changelog.md b/changelog.md index b5716f4..84c9de7 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. +## [v0.0.4] - 2025-01-27 + +### Added +- Tagged Screenshots pages +- Override for default page limit + +### Fixed + +- Bug where selected tags from a previous image wouldn't clear correctly after modal close + ## [v0.0.3] - 2025-01-27 ### Added diff --git a/docker-compose-example.yml b/docker-compose-example.yml index 83b21d0..63eec1d 100644 --- a/docker-compose-example.yml +++ b/docker-compose-example.yml @@ -5,7 +5,11 @@ services: ports: - 8090:80 volumes: - - ./data:/var/www/html/data + - type: bind + source: ./data + target: /var/www/html/data + bind: + propagation: rshared environment: ADMIN_DOMAIN: photon.jrdn.dev SHARE_DOMAIN: ss.example.com