diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..aefb5c0 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,18 @@ +# Starter pipeline +# Start with a minimal pipeline that you can customize to build and deploy your code. +# Add steps that build, run tests, deploy, and more: +# https://aka.ms/yaml + +trigger: +- master + +pool: + vmImage: 'ubuntu-latest' + +steps: +- task: DockerCompose@0 + inputs: + containerregistrytype: 'Container Registry' + dockerRegistryEndpoint: 'utPLSQL-docker' + dockerComposeFile: '**/docker-compose.yml' + action: 'Build services' diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..1ce07fd --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,9 @@ +version: '3.3' + +services: + oracle12102: + build: "./12.1.0.2" + image: "utplsqlv3/lukasztest:12c-r1-se2" + ports: + - "1521:1521" + - "5500:5500"