Created
October 13, 2020 21:31
-
-
Save viniciusrangelfp/5a228a59e18ab25416713be30cc33a7f to your computer and use it in GitHub Desktop.
Docker Compose To Magento with php 7.1
This file contains 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' | |
services: | |
web: | |
image: udovicic/echo:apache-php7.1 | |
container_name: web | |
restart: always | |
volumes: | |
- "./:/var/www/html" #remeber to change this path yo tour own | |
ports: | |
- "8083:80" | |
- "443:443" | |
- "32823:22" | |
links: | |
- db | |
db: | |
image: mysql:5.7 | |
container_name: mysql | |
restart: always | |
environment: | |
MYSQL_DATABASE: 'magento' | |
# So you don't have to use root, but you can if you like | |
MYSQL_USER: 'user' | |
# You can use whatever password you like | |
MYSQL_PASSWORD: 'password' | |
# Password for root access | |
MYSQL_ROOT_PASSWORD: 'root' | |
ports: | |
# <Port exposed> : < MySQL Port running inside container> | |
- '3306:3306' | |
expose: | |
# Opens port 3306 on the container | |
- '3306' | |
# Where our data will be persisted | |
volumes: | |
- my-db:/var/lib/mysql | |
phpmyadmin: | |
container_name: phpmyadmin | |
restart: always | |
image: phpmyadmin/phpmyadmin:latest | |
environment: | |
MYSQL_USER: 'root' | |
MYSQL_PASSWORD: 'root' | |
ports: | |
- "8082:80" | |
depends_on: | |
- db | |
volumes: | |
my-db: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment