Created
April 12, 2019 15:34
-
-
Save standinga/8c5f042a7b47c7ae901b0c7330b361ab to your computer and use it in GitHub Desktop.
Docker compose for medium article
This file contains hidden or 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.7" | |
services: | |
db: | |
image: mysql:5 | |
env_file: | |
- .env | |
networks: | |
- todonet | |
ports: | |
- "3306:3306" | |
container_name: todo_db | |
networks: | |
todonet: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment