Veikedo

Untitled

Feb 16th, 2018
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. version: '3'
  2.  
  3. services:
  4.   agentrequests.webapp:
  5.     image: agentrequests.webapp
  6.     build:
  7.       context: .
  8.       dockerfile: AgentRequests.WebApp/Dockerfile
  9.     depends_on:
  10.      - agentrequests-db
  11.   agentrequests-db:
  12.     image: microsoft/mssql-server-linux
  13.     environment:
  14.       SA_PASSWORD: "<YourStrong!Passw0rd>1"
  15.       ACCEPT_EULA: "Y"
  16.     ports:
  17.      - "1401:1433"
  18.     volumes:
  19.      - agent-requests-db-data:/var/opt/mssql
  20. volumes:
  21.  agent-requests-db-data:
Advertisement
Add Comment
Please, Sign In to add comment