Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file modified .editorconfig
100755 → 100644
Empty file.
Empty file modified .github/CONTRIBUTING.md
100755 → 100644
Empty file.
Empty file modified .github/FUNDING.yml
100755 → 100644
Empty file.
Empty file modified .github/ISSUE_TEMPLATE/config.yml
100755 → 100644
Empty file.
Empty file modified .github/ISSUE_TEMPLATE/issue.bug.yml
100755 → 100644
Empty file.
Empty file modified .github/ISSUE_TEMPLATE/issue.feature.yml
100755 → 100644
Empty file.
Empty file modified .github/workflows/call_issue_pr_tracker.yml
100755 → 100644
Empty file.
Empty file modified .github/workflows/call_issues_cron.yml
100755 → 100644
Empty file.
Empty file modified .github/workflows/external_trigger.yml
100755 → 100644
Empty file.
Empty file modified .github/workflows/external_trigger_scheduler.yml
100755 → 100644
Empty file.
Empty file modified .github/workflows/greetings.yml
100755 → 100644
Empty file.
Empty file modified .github/workflows/package_trigger_scheduler.yml
100755 → 100644
Empty file.
Empty file modified .github/workflows/permissions.yml
100755 → 100644
Empty file.
Empty file modified LICENSE
100755 → 100644
Empty file.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ The architectures supported by this image are:

Requires a user and database in either mysql or mariadb.

crontab for scheduled tasks should be added to /config/crontabs/abc and the container restarted to enable.

To set PHP options like max upload size please edit /config/php/projectsend.ini

To use translations, follow the instructions [here](https://www.projectsend.org/how-to-use-translation-files/). The necessary paths are symlinked under `/config/translations` (note that the "templates" paths don't need `lang` subdirectories).
Expand Down
3 changes: 3 additions & 0 deletions readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ app_setup_block_enabled: true
app_setup_block: |
Requires a user and database in either mysql or mariadb.

crontab for scheduled tasks should be added to /config/crontabs/abc and the container restarted to enable.

To set PHP options like max upload size please edit /config/php/projectsend.ini

To use translations, follow the instructions [here](https://www.projectsend.org/how-to-use-translation-files/). The necessary paths are symlinked under `/config/translations` (note that the "templates" paths don't need `lang` subdirectories).
Expand Down Expand Up @@ -86,6 +88,7 @@ init_diagram: |
"projectsend:latest" <- Base Images
# changelog
changelogs:
- {date: "06.06.25:", desc: "Add crontab handler for scheduled tasks."}
- {date: "21.12.24:", desc: "Rebase to Alpine 3.21, move php .ini file to /config/php."}
- {date: "06.06.24:", desc: "Rebase to Alpine 3.20."}
- {date: "23.12.23:", desc: "Rebase to Alpine 3.19 with php 8.3."}
Expand Down
8 changes: 8 additions & 0 deletions root/etc/s6-overlay/s6-rc.d/init-projectsend-config/run
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,12 @@ done

shopt -u globstar dotglob

# handle crontab if configured
mkdir -p /config/crontabs
touch /config/crontabs/abc
lsiown abc:abc /config/crontabs/abc
crontab -u abc /config/crontabs/abc

# permissions
lsiown -R abc:abc \
/config \
Expand All @@ -117,3 +123,5 @@ lsiown -R abc:abc \
lsiown abc:abc \
/data/projectsend \
/app/www/public/includes

chmod 755 /app/www/public/emails