Fix docker-compose.json environment format to array
Some checks failed
Test / test (push) Has been cancelled

This commit is contained in:
2025-12-18 11:04:31 +00:00
parent dd168f0059
commit 99c276c531

View File

@@ -4,12 +4,24 @@
{ {
"name": "rego-tunnel", "name": "rego-tunnel",
"image": "rego-vpn:latest", "image": "rego-vpn:latest",
"environment": { "environment": [
"RAM_SIZE": "${WINDOWS_RAM_GB}G", {
"CPU_CORE": "${WINDOWS_CPU_CORES}", "key": "RAM_SIZE",
"DISK_SIZE": "${WINDOWS_DISK_SIZE_GB}G", "value": "${WINDOWS_RAM_GB}G"
"VERSION": "${WINDOWS_VERSION}"
}, },
{
"key": "CPU_CORE",
"value": "${WINDOWS_CPU_CORES}"
},
{
"key": "DISK_SIZE",
"value": "${WINDOWS_DISK_SIZE_GB}G"
},
{
"key": "VERSION",
"value": "${WINDOWS_VERSION}"
}
],
"internalPort": 8006, "internalPort": 8006,
"volumes": [ "volumes": [
{ {