Skip to content

Instantly share code, notes, and snippets.

@tylerjohnst
Last active November 14, 2018 20:01
Show Gist options
  • Save tylerjohnst/d8f6d28420f38f908c1d3b84b5a68212 to your computer and use it in GitHub Desktop.
Save tylerjohnst/d8f6d28420f38f908c1d3b84b5a68212 to your computer and use it in GitHub Desktop.
version: '2'
services:
test:
environment:
ENV_TWO: 'overridden'
version: '2'
services:
test:
image: spatialnetworks/alpine
command: sh e.sh
environment:
ENV_ONE: 'not-overridden'
ENV_TWO: 'not-overridden'
volumes:
- ./:/app
echo $ENV_ONE
echo $ENV_TWO
 docker-compose -f docker-compose.yml -f docker-compose.test.yml run --rm test
not-overridden
overridden
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment