-
-
Save ravikyada/e3b9b678cf9f10de53cff4d79aa7c960 to your computer and use it in GitHub Desktop.
Docker Compose YAML to Define Networking Syntax
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' | |
services: | |
app: | |
image: my-app | |
networks: | |
- my-network | |
db: | |
image: my-db | |
networks: | |
- my-network | |
networks: | |
my-network: | |
driver: bridge |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment