Skip to content

Commit

Permalink
Release 1.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
aceberg committed Sep 13, 2023
1 parent 7679fc9 commit 68e4eae
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion docker-compose-local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion internal/web/templates/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION=1.0.8
VERSION=1.0.9

0 comments on commit 68e4eae

Please sign in to comment.