postCreateCommand.sh 330 B

123456789101112
  1. #!/bin/sh
  2. ln -s "$(pwd)" /var/www/FreshRSS
  3. cp ./Docker/*.Apache.conf /etc/apache2/conf.d/
  4. ./Docker/entrypoint.sh
  5. chown -R developer:www-data /home/developer/freshrss-data
  6. chmod -R g+rwX /home/developer/freshrss-data
  7. httpd -c 'ErrorLog "/var/log/apache2/error.log"' -c 'CustomLog "/var/log/apache2/access.log" combined_proxy'