Created
April 9, 2018 18:49
-
-
Save antoinefortin/467b5997cd72714e70fe5d8eb8ba534d to your computer and use it in GitHub Desktop.
["Docker"]
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 de Docker compose | |
version: "2" | |
services: | |
web: | |
image: library/php:7.2-apache | |
volumes: | |
- ./:/var/www | |
ports: | |
- "82:80" | |
db: | |
image: mysql | |
environment: | |
MYSQL_USER: "antoine" | |
MYSQL_ROOT_PASSWORD: "q1w2e3r4" | |
MYSQL_DATABASE: "myAwesomeDb" | |
posts: | |
- "6666:3306" | |
# "MyComputer:TheContainerport" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment