Skip to content

Commit

Permalink
Merge pull request #239 from PixelTux/docker
Browse files Browse the repository at this point in the history
ottimizzato il processo di installazione tramite Docker
  • Loading branch information
madbob authored Nov 26, 2023
2 parents eebf01d + 2c97957 commit 0dcf1be
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Se preferisci installarlo in un container Docker, segui i seguenti passaggi.

- composer

- Docker and Docker Compose
- Docker e Docker Compose

### Installazione

Expand All @@ -42,6 +42,8 @@ Se preferisci installarlo in un container Docker, segui i seguenti passaggi.

`php artisan key:generate`

*Se stai utilizzando Docker, assicurati di aver configurato correttamente le impostazioni nel file .env, seguendo le istruzioni fornite nella sezione 'For Docker' all'interno del medesimo file.*

#### 4. Avvia i contenitori Docker ed entra nella Terminale all'interno del container del progetto.
`sail up -d`

Expand Down Expand Up @@ -90,4 +92,4 @@ visita e consulta la documentazione ufficiale di Laravel.

GASdotto è distribuito in licenza AGPLv3+.

Copyright (C) 2017/2023 Roberto Guido <[email protected]>
Copyright (C) 2017/2023 Roberto Guido <[email protected]>
9 changes: 9 additions & 0 deletions code/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ APP_URL=http://www.example.com/

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
# For Docker:
#DB_HOST=mariadb
DB_PORT=3306
DB_DATABASE=homestead
DB_USERNAME=homestead
Expand All @@ -17,8 +19,15 @@ QUEUE_LOOPBACK_KEY=InsertHereARandomString
MAIL_MAILER=smtp
MAIL_HOST=smtp.provider.it
MAIL_PORT=587
# For Docker:
#MAIL_HOST=mailpit
#MAIL_PORT=1025
MAIL_USERNAME=username
MAIL_PASSWORD=password
MAIL_FROM_ADDRESS=[email protected]
MAIL_FROM_NAME='Il Mio GAS'
MAIL_ENCRYPTION=tls

# For Docker MeiliSearch:
#SCOUT_DRIVER=meilisearch
#MEILISEARCH_HOST=http://meilisearch:7700

0 comments on commit 0dcf1be

Please sign in to comment.