Fix SQLite docker build related issues (#458)

This commit is contained in:
Darko Gjorgjijoski
2025-09-01 02:42:07 +02:00
committed by GitHub
parent 3d327a1735
commit f1635bcef8
9 changed files with 239 additions and 75 deletions

View File

@@ -109,13 +109,13 @@ This dockerized environment comes with support for all three databases that Invo
The setup parameters/credentials for each of the supported databases are as follows.
| | MySQL | PostgreSQL | SQLite |
|---|---|---|---------------------------------------|
| **DB_USER** | invoiceshelf | invoiceshelf | Not applicable |
| **DB_PASS** | invoiceshelf | invoiceshelf | Not applicable |
| **DB_NAME** | invoiceshelf | invoiceshelf | /var/www/html/storage/database.sqlite |
| **DB_HOST** | db-mysql | db-pgsql | Not applicable |
| **DB_PORT** | 3036 | 5432 | Not applicable |
| | MySQL | PostgreSQL | SQLite |
|---|---|---|-------------------------------------------|
| **DB_USER** | invoiceshelf | invoiceshelf | Not applicable |
| **DB_PASS** | invoiceshelf | invoiceshelf | Not applicable |
| **DB_NAME** | invoiceshelf | invoiceshelf | /var/www/html/storage/app/database.sqlite |
| **DB_HOST** | db-mysql | db-pgsql | Not applicable |
| **DB_PORT** | 3036 | 5432 | Not applicable |
**Note:** The only required field for SQLite is **DB_NAME**.
@@ -135,11 +135,11 @@ To log into the MySQL or PostgresSQL, use the database information specified in
To log into the SQLite, use the following credentials:
| KEY | VALUE |
|--------------|--------------------------|
| **USERNAME** | admin |
| **PASSWORD** | admin |
| **DATABASE** | /storage/database.sqlite |
| KEY | VALUE |
|--------------|------------------------------|
| **USERNAME** | admin |
| **PASSWORD** | admin |
| **DATABASE** | /storage/app/database.sqlite |
### 4. Mailpit (fake mail)