This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| Original Author: kuisathaverat | |
| Description: List ID and Description of all credentials on a Jenkins Instance. | |
| Source: https://github.com/cloudbees/jenkins-scripts/blob/master/list-credential.groovy | |
| Changes: lerrigatto - added credential class name | |
| **/ | |
| import com.cloudbees.plugins.credentials.Credentials | |
| Set<Credentials> allCredentials = new HashSet<Credentials>(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Verifying that +lerrigatto is my blockchain ID. https://onename.com/lerrigatto |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM odoo-deboot:latest | |
| MAINTAINER Enrico La Cava "me@lerrigatto.com" | |
| RUN useradd -s /sbin/nologin -u 1000 odoo | |
| RUN mkdir /var/lib/odoo | |
| RUN chown odoo:odoo /var/lib/odoo | |
| COPY requirements.txt /tmp/ | |
| RUN pip install -r /tmp/requirements.txt | |
| ENV PATH /usr/local/bin:/usr/bin:/bin:$PATH | |
| USER odoo | |
| EXPOSE 8069 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # debootstrap distro parameter | |
| suite="jessie" | |
| # docker build tag | |
| tag="odoo-deboot:latest" | |
| # override if you want to build to a non-temp directory | |
| dir= | |
| rootfs_chroot() { |