File tree 2 files changed +14
-2
lines changed
2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -14,10 +14,17 @@ Abaixo estão listadas as tecnologias disponíveis.
14
14
- Docker;
15
15
- Docker Compose.
16
16
17
- ## Clonando o projeto
17
+ ## Como usar
18
+
19
+ Abra o terminal, acesse o diretório onde criará o projeto e execute o comando abaixo.
18
20
19
21
``` bash
20
- git clone https://github.com/Diego-Brocanelli/php-docker.git NOME_DO_SEU_PROJETO
22
+ wget -qO- " https://github.com/Diego-Brocanelli/php-docker/archive/refs/tags/v1.0.1.tar.gz" -O php-docker.tar.gz && \
23
+ tar -xf php-docker.tar.gz && \
24
+ mv php-docker-1.0.1 MEU_PROJETO && \
25
+ rm php-docker.tar.gz && \
26
+ cd MEU_PROJETO && ./install && \
27
+ rm install
21
28
```
22
29
23
30
## Criando arquivo de configuração
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ cp ./.env-example .env
4
+
5
+ docker-compose up -d
You can’t perform that action at this time.
0 commit comments