Created
October 14, 2018 19:41
-
-
Save esron/a673f66d7d0c584051e63eb76c0abebc to your computer and use it in GitHub Desktop.
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: '2' | |
| services: | |
| web: | |
| container_name: web | |
| build: . | |
| volumes: | |
| - .:/home/project-folder | |
| ports: | |
| - '8000:80' | |
| mysql: | |
| image: mysql | |
| command: --default-authentication-plugin=mysql_native_password | |
| restart: always | |
| environment: | |
| MYSQL_ROOT_PASSWORD: example | |
| adminer: | |
| image: adminer | |
| restart: always | |
| ports: | |
| - 8080:8080 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment