antoinefortin
4/9/2018 - 6:49 PM

["Docker"]

["Docker"]

# 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"