Advertisement
Guest User

Untitled

a guest
Dec 13th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.32 KB | None | 0 0
  1. version: "3.6"
  2.  
  3. services:
  4.   test-service-one: &test-service
  5.     image: ${DOCKER_REGISTRY}unicorn/docker-service:${DOCKER_IMAGE_LABEL:-latest}
  6.     build:
  7.       context: .
  8.     environment:
  9.      - TAB_NAME=one
  10.       - OTHER_THING=blah
  11.   test-service-two:
  12.     <<: *test-service
  13.     environment:
  14.      - TAB_NAME=two
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement