Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jvshahid/windows-choco-release
Manage windows dependencies using chocolatey
https://github.com/jvshahid/windows-choco-release
Last synced: about 1 month ago
JSON representation
Manage windows dependencies using chocolatey
- Host: GitHub
- URL: https://github.com/jvshahid/windows-choco-release
- Owner: jvshahid
- Created: 2017-06-06T20:13:56.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-23T22:31:10.000Z (almost 6 years ago)
- Last Synced: 2023-04-10T15:01:53.485Z (over 1 year ago)
- Language: HTML
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Windows CHOCO Bosh-Release
Provides a colocated job that can be used to install [chocolatey](https://chocolatey.org) packages
### Usage in Cocnourse workers:
``` yaml
jobs:
- name: choco
release: windows-choco
properties:
packages:
- name: golang
version: 1.8.3
- name: vcredist2013
version: 12.0.30501.20150616
- name: mysql
version: 5.7.18
post-install: |+
mysql -u root -e "CREATE USER 'diego'@'localhost' IDENTIFIED BY 'diego_password'; GRANT ALL PRIVILEGES ON *.* TO 'diego'@'localhost';"
- name: concourse_windows
release: concourse-windows-worker
...
```