Skip to content

Instantly share code, notes, and snippets.

View viniciusrangelfp's full-sized avatar

Vinicius Rangel viniciusrangelfp

View GitHub Profile
@viniciusrangelfp
viniciusrangelfp / docker-compose.yml
Created October 13, 2020 21:31
Docker Compose To Magento with php 7.1
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"