Skip to content

Instantly share code, notes, and snippets.

@antoinefortin
Created April 9, 2018 18:49
Show Gist options
  • Save antoinefortin/467b5997cd72714e70fe5d8eb8ba534d to your computer and use it in GitHub Desktop.
Save antoinefortin/467b5997cd72714e70fe5d8eb8ba534d to your computer and use it in GitHub Desktop.
["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"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment