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
| // SPDX-License-Identifier: MIT | |
| // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) | |
| pragma solidity ^0.8.20; | |
| import {Context} from "../utils/Context.sol"; | |
| /** | |
| * @dev Contract module which provides a basic access control mechanism, where | |
| * there is an account (an owner) that can be granted exclusive access to |
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
| // SPDX-License-Identifier: MIT | |
| // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) | |
| pragma solidity ^0.8.20; | |
| import {Context} from "../utils/Context.sol"; | |
| /** | |
| * @dev Contract module which provides a basic access control mechanism, where | |
| * there is an account (an owner) that can be granted exclusive access to |
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
| version: '3.3' | |
| services: | |
| jenkins: | |
| build: | |
| context: ./jenkins_config | |
| dockerfile: Dockerfile | |
| image: jenkins-pact-ci | |
| container_name: jenkins-pact-ci | |
| restart: always |
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
| # Starting off with the Jenkins base Image | |
| FROM jenkins/jenkins:2.230-jdk11 | |
| # Installing the plugins we need using the in-built install-plugins.sh script | |
| RUN JENKINS_UC_DOWNLOAD=http://archives.jenkins-ci.org /usr/local/bin/install-plugins.sh git matrix-auth workflow-aggregator \ | |
| docker-workflow blueocean job-dsl credentials-binding simple-theme-plugin \ | |
| jquery gravatar | |
| # Setting up environment variables for Jenkins admin user | |
| ENV JENKINS_USER admin |
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
| # Starting off with the Jenkins base Image | |
| FROM jenkins/jenkins:2.230-jdk11 | |
| # Installing the plugins we need using the in-built install-plugins.sh script | |
| RUN JENKINS_UC_DOWNLOAD=http://archives.jenkins-ci.org /usr/local/bin/install-plugins.sh git matrix-auth workflow-aggregator \ | |
| docker-workflow blueocean job-dsl credentials-binding simple-theme-plugin \ | |
| jquery gravatar | |
| # Setting up environment variables for Jenkins admin user | |
| ENV JENKINS_USER admin |