diff options
author | Melroy van den Berg | 2023-01-31 23:42:48 +0100 |
---|---|---|
committer | GitHub | 2023-01-31 22:42:48 +0000 |
commit | fd29071e5760e740a533b4f876aef761fdc7ffde (patch) | |
tree | 5e690a9aac548cf55445142a0ee8b9b7a69b85f7 /docker | |
parent | 1947409ef07f2dc4e0eab7482368816261510133 (diff) |
Rootless Docker - Mistake with the repo-avatars parent folder name (#22637)
There was a mistake when choosing the structure for the repo avatars parent folder and it added a spurious /gitea.
The `data` directory should contain folders like:
- `attachments/`
- `avatars/`
- `log/`
- `repo-avatars/`
Diffstat (limited to 'docker')
-rw-r--r-- | docker/rootless/etc/templates/app.ini | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/rootless/etc/templates/app.ini b/docker/rootless/etc/templates/app.ini index f106f01f5..005763506 100644 --- a/docker/rootless/etc/templates/app.ini +++ b/docker/rootless/etc/templates/app.ini @@ -37,7 +37,7 @@ PROVIDER_CONFIG = $GITEA_WORK_DIR/data/sessions [picture] AVATAR_UPLOAD_PATH = $GITEA_WORK_DIR/data/avatars -REPOSITORY_AVATAR_UPLOAD_PATH = $GITEA_WORK_DIR/data/gitea/repo-avatars +REPOSITORY_AVATAR_UPLOAD_PATH = $GITEA_WORK_DIR/data/repo-avatars [attachment] PATH = $GITEA_WORK_DIR/data/attachments |