Skip to content

Commit

Permalink
chore: bump to v2.10.7
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Apr 19, 2024
1 parent bdb0b49 commit 4711b66
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: 2.10.6
version: 2.10.7
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 @@ -36,7 +36,7 @@ services:
restart: unless-stopped

dolce:
image: dangrie158/dolce:v2.10.6
image: dangrie158/dolce:v2.10.7
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 @@ -31,7 +31,7 @@ points (by default this will be `/var/dolce-custom-templates/`):
version: "3"
services:
dolce:
image: dangrie158/dolce:v2.10.6
image: dangrie158/dolce:v2.10.7
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 @@ -23,7 +23,7 @@ which you can also use to hook up other services. Here is a sample configuration
version: "3"
services:
dolce:
image: dangrie158/dolce:v2.10.6
image: dangrie158/dolce:v2.10.7
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 @@ -61,7 +61,7 @@ services:
restart: unless-stopped

dolce:
image: dangrie158/dolce:v2.10.6
image: dangrie158/dolce:v2.10.7
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 @@ -35,7 +35,7 @@ services:
image: caronc/apprise:latest

dolce:
image: dangrie158/dolce:v2.10.6
image: dangrie158/dolce:v2.10.7
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 @@ -19,7 +19,7 @@ You can configure chat notifications via discord using the following environment
version: "3"
services:
dolce:
image: dangrie158/dolce:v2.10.6
image: dangrie158/dolce:v2.10.7
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 @@ -17,7 +17,7 @@ services:
image: caronc/apprise:latest

dolce:
image: dangrie158/dolce:v2.10.6
image: dangrie158/dolce:v2.10.7
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 @@ -17,7 +17,7 @@ services:
image: caronc/apprise:latest

dolce:
image: dangrie158/dolce:v2.10.6
image: dangrie158/dolce:v2.10.7
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 @@ -25,7 +25,7 @@ You can configure email notifications via SMTP using the following environment v
version: "3"
services:
dolce:
image: dangrie158/dolce:v2.10.6
image: dangrie158/dolce:v2.10.7
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 @@ -20,7 +20,7 @@ You can configure chat notifications using the following environment variables
version: "3"
services:
dolce:
image: dangrie158/dolce:v2.10.6
image: dangrie158/dolce:v2.10.7
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 @@ -16,7 +16,7 @@ services:
restart: unless-stopped

dolce:
image: dangrie158/dolce:v2.10.6
image: dangrie158/dolce:v2.10.7
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 "../deps.ts";

const UA_VERSION = "2.10.6";
const UA_VERSION = "2.10.7";
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 @@ -8,7 +8,7 @@ import { Configuration } from "./configuration.ts";

const startup_time = new Date();
const logger = log.getLogger("main");
logger.info(`starting dolce container monitor v2.10.6`);
logger.info(`starting dolce container monitor v2.10.7`);

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

0 comments on commit 4711b66

Please sign in to comment.