feat/docker-compose-update (#18)

Co-authored-by: jon brookes <marshyon@gmail.com>
Reviewed-on: https://codeberg.org/headshed/share-lt/pulls/18
This commit is contained in:
Jon Brookes 2026-02-08 18:04:18 +01:00
parent fd43495e2d
commit 1a22fd156d
70 changed files with 1068 additions and 745 deletions

20
docker/php/php.ini Normal file
View file

@ -0,0 +1,20 @@
; PHP Configuration File
; Maximum allowed size for uploaded files.
upload_max_filesize = 10M
; Maximum size of POST data that PHP will accept.
post_max_size = 12M
; Maximum execution time of each script, in seconds.
max_execution_time = 120
; Maximum amount of memory a script may consume.
memory_limit = 256M
; Maximum number of files that can be uploaded via a single request.
max_file_uploads = 20
; File upload temporary directory (optional, defaults to system temp directory).
; upload_tmp_dir = /tmp

View file

@ -24,7 +24,7 @@ stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
[program:queue-worker]
command=su-exec www /usr/local/bin/php /var/www/artisan queue:work --sleep=3 --tries=3 --max-time=3600
command=/usr/local/bin/php /var/www/artisan queue:work --sleep=3 --tries=3 --max-time=3600
autostart=true
autorestart=true
startretries=3