chore: apply prettier formatting across compose files and configs

This commit is contained in:
2026-06-19 12:03:11 +02:00
parent 1762962f32
commit 2de6131ba7
9 changed files with 13 additions and 15 deletions
+1 -1
View File
@@ -36,4 +36,4 @@ jobs:
else else
echo ">>> Skipping $dir: no compose file found" echo ">>> Skipping $dir: no compose file found"
fi fi
done done
+1 -1
View File
@@ -5,7 +5,7 @@ services:
restart: unless-stopped restart: unless-stopped
security_opt: security_opt:
- no-new-privileges:true - no-new-privileges:true
network_mode: 'host' network_mode: "host"
# https://github.com/timothymiller/cloudflare-ddns#-quick-start # https://github.com/timothymiller/cloudflare-ddns#-quick-start
environment: environment:
- CLOUDFLARE_API_TOKEN=${CLOUDFLARE_API_TOKEN:?Cloudflare API token is required} - CLOUDFLARE_API_TOKEN=${CLOUDFLARE_API_TOKEN:?Cloudflare API token is required}
+2 -2
View File
@@ -5,7 +5,7 @@ services:
volumes: volumes:
- redis-data:/data - redis-data:/data
healthcheck: healthcheck:
test: [ "CMD", "redis-cli", "ping" ] test: ["CMD", "redis-cli", "ping"]
interval: 5s interval: 5s
timeout: 3s timeout: 3s
retries: 5 retries: 5
@@ -25,7 +25,7 @@ services:
redis: redis:
condition: service_healthy condition: service_healthy
healthcheck: healthcheck:
test: [ "CMD-SHELL", "redis-cli -h redis EXISTS EDU_PHPSESSID | grep -q 1" ] test: ["CMD-SHELL", "redis-cli -h redis EXISTS EDU_PHPSESSID | grep -q 1"]
interval: 30s interval: 30s
timeout: 5s timeout: 5s
retries: 10 retries: 10
-1
View File
@@ -65,7 +65,6 @@
- symbol: MSFT - symbol: MSFT
name: Microsoft name: Microsoft
- type: releases - type: releases
cache: 1d cache: 1d
# Without authentication the Github API allows for up to 60 requests per hour. You can create a # Without authentication the Github API allows for up to 60 requests per hour. You can create a
+1 -1
View File
@@ -57,7 +57,7 @@ services:
container_name: headplane container_name: headplane
restart: unless-stopped restart: unless-stopped
ports: ports:
- '13000:3000' - "13000:3000"
volumes: volumes:
- ./config/headplane.yaml:/etc/headplane/config.yaml - ./config/headplane.yaml:/etc/headplane/config.yaml
- ./config/headscale.yaml:/etc/headscale/config.yaml - ./config/headscale.yaml:/etc/headscale/config.yaml
+1 -1
View File
@@ -42,7 +42,7 @@ services:
volumes: volumes:
- redis:/data - redis:/data
healthcheck: healthcheck:
test: [ "CMD", "redis-cli", "ping" ] test: ["CMD", "redis-cli", "ping"]
interval: 6s interval: 6s
timeout: 5s timeout: 5s
retries: 5 retries: 5
+1 -2
View File
@@ -41,7 +41,7 @@ services:
volumes: volumes:
- data:/var/lib/postgresql/data - data:/var/lib/postgresql/data
healthcheck: healthcheck:
test: [ "CMD-SHELL", "pg_isready -U netronome" ] test: ["CMD-SHELL", "pg_isready -U netronome"]
interval: 5s interval: 5s
timeout: 5s timeout: 5s
retries: 5 retries: 5
@@ -51,7 +51,6 @@ services:
volumes: volumes:
data: data:
networks: networks:
proxy: proxy:
external: true external: true
+5 -5
View File
@@ -117,7 +117,7 @@ services:
- "traefik.http.routers.penpot-dev.entrypoints=websecure" - "traefik.http.routers.penpot-dev.entrypoints=websecure"
- "traefik.http.routers.penpot-dev.tls=true" - "traefik.http.routers.penpot-dev.tls=true"
environment: environment:
<<: [ *penpot-flags, *penpot-http-body-size ] <<: [*penpot-flags, *penpot-http-body-size]
penpot-backend: penpot-backend:
image: "penpotapp/backend:${PENPOT_VERSION:-latest}" image: "penpotapp/backend:${PENPOT_VERSION:-latest}"
restart: always restart: always
@@ -137,7 +137,7 @@ services:
## Configuration envronment variables for the backend container. ## Configuration envronment variables for the backend container.
environment: environment:
<<: [ *penpot-flags, *penpot-public-uri, *penpot-http-body-size, *penpot-secret-key ] <<: [*penpot-flags, *penpot-public-uri, *penpot-http-body-size, *penpot-secret-key]
## The PREPL host. Mainly used for external programatic access to penpot backend ## The PREPL host. Mainly used for external programatic access to penpot backend
## (example: admin). By default it will listen on `localhost` but if you are going to use ## (example: admin). By default it will listen on `localhost` but if you are going to use
@@ -200,7 +200,7 @@ services:
- penpot - penpot
environment: environment:
<<: [ *penpot-secret-key ] <<: [*penpot-secret-key]
# Don't touch it; this uses an internal docker network to # Don't touch it; this uses an internal docker network to
# communicate with the frontend. # communicate with the frontend.
PENPOT_PUBLIC_URI: http://penpot-frontend:8080 PENPOT_PUBLIC_URI: http://penpot-frontend:8080
@@ -214,7 +214,7 @@ services:
stop_signal: SIGINT stop_signal: SIGINT
healthcheck: healthcheck:
test: [ "CMD-SHELL", "pg_isready -U penpot" ] test: ["CMD-SHELL", "pg_isready -U penpot"]
interval: 2s interval: 2s
timeout: 10s timeout: 10s
retries: 5 retries: 5
@@ -237,7 +237,7 @@ services:
restart: always restart: always
healthcheck: healthcheck:
test: [ "CMD-SHELL", "valkey-cli ping | grep PONG" ] test: ["CMD-SHELL", "valkey-cli ping | grep PONG"]
interval: 1s interval: 1s
timeout: 3s timeout: 3s
retries: 5 retries: 5
+1 -1
View File
@@ -6,7 +6,7 @@ services:
image: docker.io/searxng/searxng:${SEARXNG_VERSION:-latest} image: docker.io/searxng/searxng:${SEARXNG_VERSION:-latest}
restart: unless-stopped restart: unless-stopped
# ports: # ports:
# - ${SEARXNG_PORT:-8080} # - ${SEARXNG_PORT:-8080}
env_file: .env env_file: .env
labels: labels:
- "traefik.enable=true" - "traefik.enable=true"