diff --git a/docker-compose/docker-compose.yml b/docker-compose/docker-compose.yml new file mode 100644 index 0000000..1ddd880 --- /dev/null +++ b/docker-compose/docker-compose.yml @@ -0,0 +1,31 @@ +version: "3" +services: + web: + image: globalazurebootcamp/sciencelab2019:latest + env: + - name: BatchClient__Email + value: "You email here" + - name: BatchClient__Fullname + value: "Your name here" + - name: BatchClient__TeamName + value: "Your team here" + - name: BatchClient__CompanyName + value: "Your company here" + - name: BatchClient__CountryCode + value: "Your 2-digit CountryCode here" + - name: BatchClient__LabKeyCode + value: "Your lab key here + deploy: + replicas: 5 + resources: + limits: + cpus: "1" + memory: 2048M + restart_policy: + condition: on-failure + ports: + - "8080:80" + networks: + - webnet +networks: + webnet: diff --git a/docker-compose/variables.env b/docker-compose/variables.env new file mode 100644 index 0000000..9229ec6 --- /dev/null +++ b/docker-compose/variables.env @@ -0,0 +1,6 @@ +BatchClient__Email=johndoe@foo.com +BatchClient__Fullname=John Doe +BatchClient__TeamName=Global Azure Team +BatchClient__CompanyName=Global Azure Bootcamp Org. +BatchClient__CountryCode=XX +BatchClient__LabKeyCode=THE-GAB-ORG \ No newline at end of file