diff --git a/.gitea/workflows/prod_deploy.yaml b/.gitea/workflows/prod_deploy.yaml index ffb287f..1ff8bf6 100644 --- a/.gitea/workflows/prod_deploy.yaml +++ b/.gitea/workflows/prod_deploy.yaml @@ -36,4 +36,4 @@ jobs: else echo ">>> Skipping $dir: no compose file found" fi - done \ No newline at end of file + done diff --git a/cfddns/compose.yaml b/cfddns/compose.yaml index bfdf40d..9f17b33 100644 --- a/cfddns/compose.yaml +++ b/cfddns/compose.yaml @@ -5,7 +5,7 @@ services: restart: unless-stopped security_opt: - no-new-privileges:true - network_mode: 'host' + network_mode: "host" # https://github.com/timothymiller/cloudflare-ddns#-quick-start environment: - CLOUDFLARE_API_TOKEN=${CLOUDFLARE_API_TOKEN:?Cloudflare API token is required} diff --git a/edu_master/compose.yaml b/edu_master/compose.yaml index 0793234..5292200 100644 --- a/edu_master/compose.yaml +++ b/edu_master/compose.yaml @@ -5,7 +5,7 @@ services: volumes: - redis-data:/data healthcheck: - test: [ "CMD", "redis-cli", "ping" ] + test: ["CMD", "redis-cli", "ping"] interval: 5s timeout: 3s retries: 5 @@ -25,7 +25,7 @@ services: redis: condition: service_healthy 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 timeout: 5s retries: 10 diff --git a/glance/config/home.yml b/glance/config/home.yml index b3a8510..13d66fb 100644 --- a/glance/config/home.yml +++ b/glance/config/home.yml @@ -65,7 +65,6 @@ - symbol: MSFT name: Microsoft - - type: releases cache: 1d # Without authentication the Github API allows for up to 60 requests per hour. You can create a diff --git a/headscale/compose.yaml b/headscale/compose.yaml index dde6b37..c4b91e2 100644 --- a/headscale/compose.yaml +++ b/headscale/compose.yaml @@ -57,7 +57,7 @@ services: container_name: headplane restart: unless-stopped ports: - - '13000:3000' + - "13000:3000" volumes: - ./config/headplane.yaml:/etc/headplane/config.yaml - ./config/headscale.yaml:/etc/headscale/config.yaml diff --git a/kener/compose.yaml b/kener/compose.yaml index 3a07fcf..18dc6cc 100644 --- a/kener/compose.yaml +++ b/kener/compose.yaml @@ -42,7 +42,7 @@ services: volumes: - redis:/data healthcheck: - test: [ "CMD", "redis-cli", "ping" ] + test: ["CMD", "redis-cli", "ping"] interval: 6s timeout: 5s retries: 5 diff --git a/netronome/compose.yaml b/netronome/compose.yaml index 2b6993f..4a23502 100644 --- a/netronome/compose.yaml +++ b/netronome/compose.yaml @@ -41,7 +41,7 @@ services: volumes: - data:/var/lib/postgresql/data healthcheck: - test: [ "CMD-SHELL", "pg_isready -U netronome" ] + test: ["CMD-SHELL", "pg_isready -U netronome"] interval: 5s timeout: 5s retries: 5 @@ -51,7 +51,6 @@ services: volumes: data: - networks: proxy: external: true diff --git a/penpot/compose.yaml b/penpot/compose.yaml index 81ecf5d..5eff9ee 100644 --- a/penpot/compose.yaml +++ b/penpot/compose.yaml @@ -117,7 +117,7 @@ services: - "traefik.http.routers.penpot-dev.entrypoints=websecure" - "traefik.http.routers.penpot-dev.tls=true" environment: - <<: [ *penpot-flags, *penpot-http-body-size ] + <<: [*penpot-flags, *penpot-http-body-size] penpot-backend: image: "penpotapp/backend:${PENPOT_VERSION:-latest}" restart: always @@ -137,7 +137,7 @@ services: ## Configuration envronment variables for the backend container. 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 ## (example: admin). By default it will listen on `localhost` but if you are going to use @@ -200,7 +200,7 @@ services: - penpot environment: - <<: [ *penpot-secret-key ] + <<: [*penpot-secret-key] # Don't touch it; this uses an internal docker network to # communicate with the frontend. PENPOT_PUBLIC_URI: http://penpot-frontend:8080 @@ -214,7 +214,7 @@ services: stop_signal: SIGINT healthcheck: - test: [ "CMD-SHELL", "pg_isready -U penpot" ] + test: ["CMD-SHELL", "pg_isready -U penpot"] interval: 2s timeout: 10s retries: 5 @@ -237,7 +237,7 @@ services: restart: always healthcheck: - test: [ "CMD-SHELL", "valkey-cli ping | grep PONG" ] + test: ["CMD-SHELL", "valkey-cli ping | grep PONG"] interval: 1s timeout: 3s retries: 5 diff --git a/searxng/compose.yaml b/searxng/compose.yaml index eae66a7..3408d05 100644 --- a/searxng/compose.yaml +++ b/searxng/compose.yaml @@ -6,7 +6,7 @@ services: image: docker.io/searxng/searxng:${SEARXNG_VERSION:-latest} restart: unless-stopped # ports: - # - ${SEARXNG_PORT:-8080} + # - ${SEARXNG_PORT:-8080} env_file: .env labels: - "traefik.enable=true"