Created
December 12, 2017 17:19
-
-
Save miguelangelgonzalez/6ec9453ac2b778cf99a166391fc6c75b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.1' | |
services: | |
db: | |
image: microsoft/nanoserver | |
command: powershell /c sleep 3600 | |
web: | |
image: microsoft/nanoserver | |
command: ping db | |
depends_on: | |
- db | |
networks: | |
default: | |
external: | |
name: nat |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment