Last active
February 21, 2018 05:09
-
-
Save kamiazya/67aea386bd95beee5753fcbd56c7f4be to your computer and use it in GitHub Desktop.
docker-composeフォーマットの3.5からnetworkに名前をつけられる
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.5' | |
services: | |
app: | |
image: nginx | |
container_name: my-app | |
networks: | |
- default | |
ports: | |
- 8080:80 | |
networks: | |
default: | |
name: my-app-net |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment