From 830f2f2b01dd9d84cf4638dd4b4716e28368b27f Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Sun, 22 Sep 2024 01:38:44 -0400 Subject: [PATCH] chore: remove references to version in compose files This is now deprecated and causes a warning to be raised. --- docs/getting-started/install/docker.md | 2 -- plugins/caddy-vhosts/templates/compose.yml.sigil | 2 -- plugins/haproxy-vhosts/templates/compose.yml.sigil | 2 -- plugins/logs/templates/compose.yml.tmpl | 2 -- plugins/openresty-vhosts/templates/compose.yml.sigil | 2 -- plugins/traefik-vhosts/templates/compose.yml.sigil | 2 -- 6 files changed, 12 deletions(-) diff --git a/docs/getting-started/install/docker.md b/docs/getting-started/install/docker.md index 720b77ef5..84c1086ab 100644 --- a/docs/getting-started/install/docker.md +++ b/docs/getting-started/install/docker.md @@ -25,8 +25,6 @@ docker container run -d \ Alternatively, you can use `docker-compose.yml`: ```yaml -version: "3.8" - services: dokku: image: dokku/dokku:0.34.9 diff --git a/plugins/caddy-vhosts/templates/compose.yml.sigil b/plugins/caddy-vhosts/templates/compose.yml.sigil index a96f18df2..a2f04ef35 100644 --- a/plugins/caddy-vhosts/templates/compose.yml.sigil +++ b/plugins/caddy-vhosts/templates/compose.yml.sigil @@ -1,6 +1,4 @@ --- -version: "3.8" - services: caddy: image: "{{ $.CADDY_IMAGE }}" diff --git a/plugins/haproxy-vhosts/templates/compose.yml.sigil b/plugins/haproxy-vhosts/templates/compose.yml.sigil index 9097a548b..be884d5be 100644 --- a/plugins/haproxy-vhosts/templates/compose.yml.sigil +++ b/plugins/haproxy-vhosts/templates/compose.yml.sigil @@ -1,6 +1,4 @@ --- -version: "3.8" - services: haproxy: image: "{{ $.HAPROXY_IMAGE }}" diff --git a/plugins/logs/templates/compose.yml.tmpl b/plugins/logs/templates/compose.yml.tmpl index b8ec72469..70f033667 100644 --- a/plugins/logs/templates/compose.yml.tmpl +++ b/plugins/logs/templates/compose.yml.tmpl @@ -1,6 +1,4 @@ --- -version: "3.8" - services: vector: image: "{{ $.VectorImage }}" diff --git a/plugins/openresty-vhosts/templates/compose.yml.sigil b/plugins/openresty-vhosts/templates/compose.yml.sigil index d6a13ffe9..f5d9f4501 100644 --- a/plugins/openresty-vhosts/templates/compose.yml.sigil +++ b/plugins/openresty-vhosts/templates/compose.yml.sigil @@ -1,6 +1,4 @@ --- -version: "3.8" - services: openresty: image: "{{ $.OPENRESTY_IMAGE }}" diff --git a/plugins/traefik-vhosts/templates/compose.yml.sigil b/plugins/traefik-vhosts/templates/compose.yml.sigil index b26b2e477..6a3e07f57 100644 --- a/plugins/traefik-vhosts/templates/compose.yml.sigil +++ b/plugins/traefik-vhosts/templates/compose.yml.sigil @@ -1,6 +1,4 @@ --- -version: "3.8" - services: traefik: image: "{{ $.TRAEFIK_IMAGE }}"