Skip to content

Commit

Permalink
chore: Update Dockerfile and configuration files for compatibility an…
Browse files Browse the repository at this point in the history
…d enhancements 🔧
  • Loading branch information
0GiS0 committed Dec 30, 2024
1 parent f42dd1e commit 1e7af49
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/devcontainers/dotnet:9.0
FROM mcr.microsoft.com/devcontainers/dotnet:8.0

# Install SQL Tools: SQLPackage and sqlcmd
COPY mssql/installSQLtools.sh installSQLtools.sh
Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ services:

loki:
image: grafana/loki:latest
command: -config.file=/mnt/config/loki-config.yml
command: -config.file=/mnt/config/loki-config.yml -config.expand-env=true
ports:
- "3100:3100"
networks:
Expand Down
4 changes: 2 additions & 2 deletions .devcontainer/loki-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ storage_config:
filesystem:
directory: /tmp/loki/chunks

limits_config:
enforce_metric_name: false
limits_config:
allow_structured_metadata: false
reject_old_samples: true
reject_old_samples_max_age: 168h
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"text": "Add emoji at the end of the message."
},
{
"file": "docs/code-style copy.md"
"file": "docs/commit-style.md"
}
],
"github.copilot.chat.testGeneration.instructions": [
Expand Down
2 changes: 0 additions & 2 deletions docs/code-style copy.md

This file was deleted.

2 changes: 2 additions & 0 deletions docs/commit-style.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
## Commit messages
If the commit is for a new feature should start with `feat: `, if it's for fixing a bug should start with `fix: `, if it's for performance improvements should start with `perf: `, if its for style or layout changes should start with `style: `, for minimum changes with no significant impact `chore: ` and for documentation `docs: `.

0 comments on commit 1e7af49

Please sign in to comment.