Skip to content

Instantly share code, notes, and snippets.

@toolmantim
Last active July 20, 2017 07:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save toolmantim/5b149ca1602b19d1e11e894aa740cd15 to your computer and use it in GitHub Desktop.
Save toolmantim/5b149ca1602b19d1e11e894aa740cd15 to your computer and use it in GitHub Desktop.
version: '2'
services:
tests-1:
build:
dockerfile: Dockerfile-1
context: .
tests-2:
build:
dockerfile: Dockerfile-2
context: .
FROM alpine
ADD helloworld-1.sh /usr/local/bin/helloworld.sh
FROM alpine
ADD helloworld-2.sh /usr/local/bin/helloworld.sh
#!/bin/sh
echo "Hello world 1"
#!/bin/sh
echo "Hello world 2"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment