Files
windfree-poller/Jenkinsfile.deploy
2026-08-15 23:40:58 +02:00

15 lines
522 B
Plaintext

@Library('vulcan-ci') _
containerDeploymentPipeline(
applicationName: 'windfree-poller',
imageRepository: 'repo.attilabito.com/apps/windfree-poller',
deploymentTargets: [
'raspberry-pi-4b'
],
dockerArguments: [
'--env-file /etc/smartthings-windfree/secrets',
'--mount type=bind,src=/etc/smartthings-windfree/config.toml,dst=/etc/smartthings-windfree/config.toml,readonly',
'--mount type=bind,src=/var/lib/smartthings-windfree,dst=/var/lib/smartthings-windfree'
]
)