Files
FreshRSS/.devcontainer/postCreateCommand.sh
Alexandre Alapetite c5b741d98f Experiment Development Containers / GitHub Codespaces (#4859)
* Experiment Development Containers / GitHub Codespaces
https://containers.dev/
https://github.com/features/codespaces

* Fix tests
2022-11-16 13:23:51 +01:00

18 lines
323 B
Bash
Executable File

#!/bin/sh
ln -s "$(pwd)" /var/www/FreshRSS
cp ./Docker/*.Apache.conf /etc/apache2/conf.d/
cat <<EOT >./constants.local.php
<?php
define('DATA_PATH', '/home/developer/freshrss-data');
EOT
./Docker/entrypoint.sh
chown -R developer:www-data /home/developer/freshrss-data
chmod -R g+w /home/developer/freshrss-data
httpd