diff --git a/CHANGELOG.md b/CHANGELOG.md index 47f8a46..4f993bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ # Change Log All notable changes to this project will be documented in this file. +## [1.0.9] - 2023-09-13 +### Fixed +- Docker image changed from `scratch` to `alpine`, to fix `shoutrrr` notifications problem + ## [1.0.8] - 2023-08-23 ### Changed - Monospace font in edit board file [Issue #3](https://github.com/aceberg/miniboard/issues/3) diff --git a/README.md b/README.md index 093a12f..19cd13c 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ docker run --name node-bootstrap \ docker run --name miniboard \ -v ~/.dockerdata/miniboard:/data/miniboard \ -p 8849:8849 \ - aceberg/miniboard -n "http://127.0.0.1:8850" + aceberg/miniboard -n "http://$YOUR_IP:8850" ``` Or use [docker-compose](docker-compose-local.yml) diff --git a/docker-compose-local.yml b/docker-compose-local.yml index 16d19f5..0845695 100644 --- a/docker-compose-local.yml +++ b/docker-compose-local.yml @@ -10,7 +10,7 @@ services: restart: unless-stopped ports: - 8849:8849 - command: "-n http://127.0.0.1:8850" + command: "-n http://YOUR_IP:8850" # Put your server IP or DNS name here depends_on: - node-bootstrap volumes: diff --git a/internal/web/templates/version b/internal/web/templates/version index ed6d5be..1755651 100644 --- a/internal/web/templates/version +++ b/internal/web/templates/version @@ -1 +1 @@ -VERSION=1.0.8 \ No newline at end of file +VERSION=1.0.9 \ No newline at end of file