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: | |
skf-angular: | |
restart: always | |
image: blabla1337/skf-angular:1.4 | |
ports: | |
- "8788:8788" | |
environment: | |
- FRONTEND_URI=http://skf.domain.net:8888 | |
skf-api: |
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
https://github.com/herdphp/docker-phpqa/wiki | |
https://medium.com/trainingcenter/vamos-testar-o-php-c0b020608678 | |
- Mão na massa - roteiro (usando docker-phpqa installer) | |
- Instale o Docker | |
https://www.docker.com/community-edition | |
- Instale o php-qa | |
curl -s https://raw.githubusercontent.com/herdphp/docker-phpqa/master/bin/installer.sh | bash |
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
{ | |
"require": { | |
"elasticsearch/elasticsearch": "~2.0" | |
} | |
} |
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
FROM php:5.6-apache | |
RUN docker-php-ext-install mysqli |
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
web: vendor/bin/heroku-php-apache2 public/ |
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
var fotos = document.getElementById("fotos_page").innerHTML; | |
var res = fotos.replace(/\\/g, "/"); | |
document.getElementById("fotos_page").innerHTML = res; |