Skip to content

Commit

Permalink
chore: bump to v3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 20, 2024
1 parent 08d80ce commit 1ff0546
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .bmp.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 3.0.0
version: 3.0.1
commit: 'chore: bump to v%.%.%'
files:
README.md: v%.%.%
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ services:
restart: unless-stopped

dolce:
image: dangrie158/dolce:v3.0.0
image: dangrie158/dolce:v3.0.1
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock
Expand Down
2 changes: 1 addition & 1 deletion docs/advanced/custom-templates.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ points (by default this will be `/var/dolce-custom-templates/`):
```yaml title="docker-compose.yml"
services:
dolce:
image: dangrie158/dolce:v3.0.0
image: dangrie158/dolce:v3.0.1
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock
Expand Down
2 changes: 1 addition & 1 deletion docs/advanced/reduced-permissions.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ which you can also use to hook up other services. Here is a sample configuration
```yaml
services:
dolce:
image: dangrie158/dolce:v3.0.0
image: dangrie158/dolce:v3.0.1
restart: unless-stopped
environment:
DOCKER_HOST: docker-proxy:2375 # (1)!
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ services:
restart: unless-stopped

dolce:
image: dangrie158/dolce:v3.0.0
image: dangrie158/dolce:v3.0.1
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock
Expand Down
2 changes: 1 addition & 1 deletion docs/notifiers/apprise.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ services:
image: caronc/apprise:latest

dolce:
image: dangrie158/dolce:v3.0.0
image: dangrie158/dolce:v3.0.1
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock
Expand Down
2 changes: 1 addition & 1 deletion docs/notifiers/discord.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ You can configure chat notifications via discord using the following environment
```yaml
services:
dolce:
image: dangrie158/dolce:v3.0.0
image: dangrie158/dolce:v3.0.1
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock
Expand Down
2 changes: 1 addition & 1 deletion docs/notifiers/mattermost.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:
image: caronc/apprise:latest

dolce:
image: dangrie158/dolce:v3.0.0
image: dangrie158/dolce:v3.0.1
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock
Expand Down
2 changes: 1 addition & 1 deletion docs/notifiers/slack.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:
image: caronc/apprise:latest

dolce:
image: dangrie158/dolce:v3.0.0
image: dangrie158/dolce:v3.0.1
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock
Expand Down
2 changes: 1 addition & 1 deletion docs/notifiers/smtp.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ You can configure email notifications via SMTP using the following environment v
```yaml
services:
dolce:
image: dangrie158/dolce:v3.0.0
image: dangrie158/dolce:v3.0.1
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock
Expand Down
2 changes: 1 addition & 1 deletion docs/notifiers/telegram.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ You can configure chat notifications using the following environment variables
```yaml
services:
dolce:
image: dangrie158/dolce:v3.0.0
image: dangrie158/dolce:v3.0.1
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock
Expand Down
2 changes: 1 addition & 1 deletion docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ services:
restart: unless-stopped

dolce:
image: dangrie158/dolce:v3.0.0
image: dangrie158/dolce:v3.0.1
volumes:
- /var/run/docker.sock:/var/run/docker.sock # (2)!
environment: # (3)!
Expand Down
2 changes: 1 addition & 1 deletion lib/universal-http.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { DelimiterStream } from "@std/streams";

const UA_VERSION = "3.0.0";
const UA_VERSION = "3.0.1";
const UA_STRING = `Dolce Container Monitor v${UA_VERSION}`;

const CRLF = "\r\n";
Expand Down
2 changes: 1 addition & 1 deletion main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { timestamp_in_window } from "./lib/chrono.ts";

const startup_time = new Date();
const logger = log.getLogger("main");
logger.info(`starting dolce container monitor v3.0.0`);
logger.info(`starting dolce container monitor v3.0.1`);

if (!Configuration.is_valid) {
logger.error(`invalid configuration found:`);
Expand Down

0 comments on commit 1ff0546

Please sign in to comment.