Skip to content

Commit 663bf33

Browse files
committed
reset
1 parent 495f684 commit 663bf33

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

docs/content/doc/installation/with-docker.en-us.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -98,13 +98,6 @@ services:
9898

9999
## Databases
100100

101-
### SQLite3 database
102-
103-
Use the above "basic" docker-compose config, set "Database Type" to SQLite3 on the installation page.
104-
105-
SQLite3 is only suitable for small instances with few users.
106-
It's recommended to use other database servers for production instances.
107-
108101
### MySQL database
109102

110103
To start Gitea in combination with a MySQL database, apply these changes to the

routers/install/install.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ func Install(ctx *context.Context) {
113113
}
114114
}
115115
if !isCurDBTypeSupported {
116-
curDBType = setting.SupportedDatabaseTypes[0]
116+
curDBType = "mysql"
117117
}
118118
ctx.Data["CurDbType"] = curDBType
119119

0 commit comments

Comments
 (0)