Skip to content

Commit 0c5f3aa

Browse files
authored
fix: correct YAML syntax in build-docker-compose.yaml (#1843)
* fix: correct YAML syntax in build-docker-compose.yaml Add missing environment key before CASC_RELOAD_TOKEN variable in jenkins_controller service. This resolves YAML parsing errors that were preventing updatecli from processing the file correctly. * fix: add missing environment key in docker-compose.yaml Add missing environment key before CASC_RELOAD_TOKEN variable in jenkins_controller service. Same issue as build-docker-compose.yaml. * chore: trigger workflow run
1 parent fe34d31 commit 0c5f3aa

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

build-docker-compose.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ services:
4545
build: dockerfiles/.
4646
restart: on-failure
4747
# The CASC_RELOAD_TOKEN environment variable is used by the Jenkins controller to restart the Configuration as Code (JCasc) plugin configuration.
48+
environment:
4849
- CASC_RELOAD_TOKEN=thisisnotsecure
4950
ports:
5051
- "8080:8080"

docker-compose.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ services:
6565
- dotnet
6666
- default
6767
# The CASC_RELOAD_TOKEN environment variable is used by the Jenkins controller to restart the Configuration as Code (JCasc) plugin configuration.
68+
environment:
6869
- CASC_RELOAD_TOKEN=thisisnotsecure
6970
# The Jenkins web interface is exposed on port 8080.
7071
ports:

0 commit comments

Comments
 (0)