mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-29 15:41:05 -05:00
* Improve Dev Container PHPStan was failing in Dev Container * Update Docker to Alpine Linux 3.18 * New DATA_PATH environment variable * README
13 lines
227 B
Bash
Executable File
13 lines
227 B
Bash
Executable File
#!/bin/sh
|
|
|
|
ln -s "$(pwd)" /var/www/FreshRSS
|
|
|
|
cp ./Docker/*.Apache.conf /etc/apache2/conf.d/
|
|
|
|
./Docker/entrypoint.sh
|
|
|
|
chown -R developer:www-data /home/developer/freshrss-data
|
|
chmod -R g+rwX /home/developer/freshrss-data
|
|
|
|
httpd
|