Closed
Description
Description
Hello,
In a loop, 1.18 keeps crashing forever:
Server listening on :: port 22.
Server listening on 0.0.0.0 port 22.
2022/12/30 05:11:07 cmd/web.go:106:runWeb() [I] Starting Gitea on PID: 15
2022/12/30 05:11:07 ...s/setting/setting.go:613:deprecatedSetting() [E] Deprecated fallback `[server]` `LFS_CONTENT_PATH` present. Use `[lfs]` `PATH` instead. This fallback will be removed in v1.19.0
2022/12/30 05:11:07 cmd/web.go:160:runWeb() [I] Global init
2022/12/30 05:11:07 ...s/setting/setting.go:613:deprecatedSetting() [E] Deprecated fallback `[server]` `LFS_CONTENT_PATH` present. Use `[lfs]` `PATH` instead. This fallback will be removed in v1.19.0
2022/12/30 05:11:07 routers/init.go:116:GlobalInitInstalled() [I] Git Version: 2.36.3, Wire Protocol Version 2 Enabled (home: /data/gitea/home)
2022/12/30 05:11:07 routers/init.go:117:GlobalInitInstalled() [I] AppPath: /usr/local/bin/gitea
2022/12/30 05:11:07 routers/init.go:118:GlobalInitInstalled() [I] AppWorkPath: /app/gitea
2022/12/30 05:11:07 routers/init.go:119:GlobalInitInstalled() [I] Custom path: /data/gitea
2022/12/30 05:11:07 routers/init.go:120:GlobalInitInstalled() [I] Log path: /data/gitea/log
2022/12/30 05:11:07 routers/init.go:121:GlobalInitInstalled() [I] Configuration file: /data/gitea/conf/app.ini
2022/12/30 05:11:07 routers/init.go:122:GlobalInitInstalled() [I] Run Mode: Prod
Received signal 15; terminating.
Once I downgrade to 1.17, all is working again.
I'm not sure what to do, or how to investigate further.
MySQL is running fine:
2022-12-30T05:10:29.580620Z 0 [System] [MY-010931] [Server] /usr/sbin/mysqld: ready for connections. Version: '8.0.31' socket: '/var/run/mysqld/mysqld.sock' port: 3306 MySQL Community Server - GPL.
Also, I'm not sure how to fix the LFS_CONTENT_PATH
issue.
What I currently have is:
LFS_START_SERVER = true
LFS_CONTENT_PATH = /data/git/lfs
LFS_JWT_SECRET = ...
Do I just move the LFS_CONTENT_PATH
like this?
[lfs]
PATH = /data/git/lfs
and leave the other LFS_*
as they are?
Thank you very much.
Gitea Version
1.18
Can you reproduce the bug on the Gitea demo site?
No
Log Gist
No response
Screenshots
No response
Git Version
Bundled in Docker
Operating System
Bundled in Docker
How are you running Gitea?
services:
server:
container_name: gitea_server
image: gitea/gitea:latest
environment:
- USER_UID=...
- USER_GID=...
- DB_TYPE=mysql
- DB_HOST=db:3306
- RUN_MODE=prod
- ROOT_URL="https://..../"
env_file:
- ./db.env
restart: always
networks:
- gitea
volumes:
- /.../data:/data
ports:
- "127.0.0.1:...:3000"
depends_on:
- db
db:
container_name: gitea_db
image: mysql:8.0
restart: always
env_file:
- ./db.env
networks:
- gitea
volumes:
- /.../mysql:/var/lib/mysql
cap_add:
# mbind: Operation not permitted
- SYS_NICE
networks:
gitea:
external: false
Database
MySQL