Skip to content

Commit

Permalink
Release 1.0.1 (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
aceberg committed Jul 8, 2023
1 parent 88d9b58 commit f5f311e
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION=1.0.0
VERSION=1.0.1
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.1] - 2023-07-09
### Added
- Button to automatically create panel from Docker containers

## [1.0.0] - 2023-07-08
### Added
- Uptime monitoring
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Can be configured through GUI or yaml file.
```sh
docker run --name miniboard \
-v ~/.dockerdata/miniboard:/data/miniboard \
-v /var/run/docker.sock:/var/run/docker.sock \ # Only needed to create panel from Docker containers automatically
-p 8849:8849 \
aceberg/miniboard
```
Expand Down
1 change: 1 addition & 0 deletions docker-compose-local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ services:
- node-bootstrap
volumes:
- ~/.dockerdata/miniboard:/data/miniboard # app data (set your own path instead of dockerdata)
- /var/run/docker.sock:/var/run/docker.sock # Only needed to create panel from Docker containers automatically
environment:
HOST: "0.0.0.0" # optional, default: 0.0.0.0
PORT: "8849" # optional, default: 8849
Expand Down
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ services:
- 8849:8849
volumes:
- ~/.dockerdata/miniboard:/data/miniboard # app data (set your own path instead of dockerdata)
- /var/run/docker.sock:/var/run/docker.sock # Only needed to create panel from Docker containers automatically
environment:
HOST: "0.0.0.0" # optional, default: 0.0.0.0
PORT: "8849" # optional, default: 8849
Expand Down
File renamed without changes.

0 comments on commit f5f311e

Please sign in to comment.