Skip to content

Instantly share code, notes, and snippets.

View cristiano-pacheco's full-sized avatar

Cristiano Pacheco cristiano-pacheco

View GitHub Profile
@cristiano-pacheco
cristiano-pacheco / docker-compose.yml
Created August 6, 2018 20:36
Docker compose file example mongodb and rabbitmq
version: '2'
services:
mongo:
image: mongo:3.6.6
restart: always
mem_limit: 3G
container_name: orange_mongo
ports:
- "27017:27017"
##### Instalação do repositório
mkdir magento2 && cd $_
git init
git remote add origin https://github.com/markoshust/docker-magento.git
git fetch origin
git checkout origin/master -- compose/magento-2
mv compose/magento-2/* .
rm -rf compose .git
git init
@cristiano-pacheco
cristiano-pacheco / Dockerfile
Last active October 9, 2018 14:41
Dockerfile RD
FROM php:5.6-fpm
RUN apt-get update && apt-get install -y \
libmcrypt-dev \
libicu-dev \
mysql-client \
zlib1g-dev \
&& docker-php-ext-install pdo_mysql \
iconv \
mcrypt \
@cristiano-pacheco
cristiano-pacheco / docker-compose.yml
Last active October 22, 2018 17:41
Docker compose RD
version: '2'
services:
proxy:
image: nginx:1.13.8
container_name: orange_nginx
ports:
- "80:80"
- "443:443"
volumes:
@cristiano-pacheco
cristiano-pacheco / docker-magento.txt
Created January 12, 2019 01:01
Instruções para instalação do docker-magento
1-Clonar o repositório
git clone https://github.com/cristianopacheco/docker-magento
2-Copiar o diretório magento-2 dentro de docker-magento/compose para local de sua preferencia e entrar no diretório
2-Fazer instalação do código fonte do magento via composer
bin/download 2.3.0
3-subir os containers
bin/start
@cristiano-pacheco
cristiano-pacheco / install_magento2.txt
Last active January 18, 2019 00:14
Install magento 2 with docker.
#### 1-Baixar repositório docker
baixar o conteudo
https://github.com/markoshust/docker-magento/archive/master.zip
ou fazer o clone do projeto
git clone https://github.com/markoshust/docker-magento.git
@cristiano-pacheco
cristiano-pacheco / config
Created February 16, 2019 18:20
Terminator Config
1
mkdir -p ~/.config/terminator
2
nano ~/.config/terminator/config
3
paste de content in the file above
[global_config]
title_transmit_bg_color = "#729fcf"
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
@cristiano-pacheco
cristiano-pacheco / Testing in Magento 2.md
Created January 10, 2023 11:01 — forked from ProcessEight/Testing in Magento 2.md
M2: Notes on setting up PHPUnit and writing/troubleshooting tests in Magento 2