Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
services:

Check warning on line 1 in docker-compose.yml

View workflow job for this annotation

GitHub Actions / YAML Lint

1:1 [document-start] missing document start "---"
# Development container for building C++ code

Check warning on line 2 in docker-compose.yml

View workflow job for this annotation

GitHub Actions / YAML Lint

2:1 [comments-indentation] comment not indented like content
dev-container:
build:
Expand Down Expand Up @@ -97,7 +97,7 @@
KONFIG_API_ADDR: "api-service:8081"
KONFIG_DIST_ADDR: "distribution-service:8082"
KONFIG_VAL_ADDR: "validation-service:8083"
DATABASE_URL: "postgres://${WEB_POSTGRES_USER:-webuser}:${WEB_POSTGRES_PASSWORD:-webpass}@web-postgres:5432/${WEB_POSTGRES_DB:-konfig_auth}?sslmode=disable"

Check warning on line 100 in docker-compose.yml

View workflow job for this annotation

GitHub Actions / YAML Lint

100:121 [line-length] line too long (162 > 120 characters)
JWT_SECRET: "${JWT_SECRET:-change-me-in-production}"
APP_URL: "${APP_URL:-http://localhost}"
SECURE_COOKIE: "${SECURE_COOKIE:-false}"
Expand Down Expand Up @@ -144,6 +144,8 @@
build:
context: ../Konfig-Web-Frontend
dockerfile: Dockerfile
args:
VITE_BASE_DOMAIN: ${BASE_DOMAIN:-localhost}
container_name: konfig-web-frontend
ports:
- "3001:80"
Expand Down Expand Up @@ -285,7 +287,7 @@
- '--web.console.templates=/etc/prometheus/consoles'
networks:
- config-network

Check failure on line 290 in docker-compose.yml

View workflow job for this annotation

GitHub Actions / YAML Lint

290:1 [trailing-spaces] trailing spaces
# StatsD Exporter - converts StatsD metrics to Prometheus format
statsd-exporter:
image: prom/statsd-exporter:latest
Expand Down Expand Up @@ -358,3 +360,3 @@

networks:
config-network:
Expand Down
Loading