Remove other version:

This commit is contained in:
Nicolas Dorier 2026-03-20 10:25:10 +09:00
parent 6f8b6bdc01
commit 7af397cb58
No known key found for this signature in database
GPG Key ID: 6618763EF09186FE
4 changed files with 0 additions and 6 deletions

View File

@ -16,7 +16,6 @@ Some of the benefits of using Traefik over NGinx are:
- `BTCPAYGEN_ADDITIONAL_FRAGMENTS`: Add `traefik` - `BTCPAYGEN_ADDITIONAL_FRAGMENTS`: Add `traefik`
- `BTCPAY_ADDITIONAL_HOSTS`: Traefik can not accept list of hosts. Add additional hosts in a new file named e.g. `btcpayserver-traefic.custom.yml`: - `BTCPAY_ADDITIONAL_HOSTS`: Traefik can not accept list of hosts. Add additional hosts in a new file named e.g. `btcpayserver-traefic.custom.yml`:
``` ```
version: "3"
services: services:
btcpayserver: btcpayserver:
labels: labels:

View File

@ -1,5 +1,3 @@
version: "3"
services: services:
beldexd: beldexd:
restart: unless-stopped restart: unless-stopped

View File

@ -1,5 +1,3 @@
version: "3"
services: services:
beldexd: beldexd:
ports: ports:

View File

@ -167,7 +167,6 @@ namespace DockerGenerator
} }
YamlMappingNode output = new YamlMappingNode(); YamlMappingNode output = new YamlMappingNode();
output.Add("version", new YamlScalarNode("3") { Style = YamlDotNet.Core.ScalarStyle.DoubleQuoted });
output.Add("services", new YamlMappingNode(Merge(services))); output.Add("services", new YamlMappingNode(Merge(services)));
output.Add("volumes", new YamlMappingNode(volumes)); output.Add("volumes", new YamlMappingNode(volumes));
output.Add("configs", new YamlMappingNode(configs)); output.Add("configs", new YamlMappingNode(configs));