File tree Expand file tree Collapse file tree 2 files changed +1
-8
lines changed
docs/content/doc/installation Expand file tree Collapse file tree 2 files changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -98,13 +98,6 @@ services:
98
98
99
99
## Databases
100
100
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
-
108
101
### MySQL database
109
102
110
103
To start Gitea in combination with a MySQL database, apply these changes to the
Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ func Install(ctx *context.Context) {
113
113
}
114
114
}
115
115
if ! isCurDBTypeSupported {
116
- curDBType = setting . SupportedDatabaseTypes [ 0 ]
116
+ curDBType = "mysql"
117
117
}
118
118
ctx .Data ["CurDbType" ] = curDBType
119
119
You can’t perform that action at this time.
0 commit comments