Skip to content
Snippets Groups Projects
Select Git revision
  • a6dc2f2baa748a022c716112efe28b879d95339d
  • master default protected
  • 7771-harden-postgres-backup
  • pgsql-dump-with-snapshots
  • update-colors
  • update-docs-css
  • usb-repair-stick
  • desktop-notification
  • 7000-corrections
  • db-detector
10 results

backup.sh.banner

Blame
  • web-server-Dockerfile 411 B
    # TARGET: docker/containers/web-server/Dockerfile
    #
    # {{generator}}
    #
    FROM php:{{APP_PHP_VERSION}}-apache
    
    # install packages
    RUN apt-get update && apt-get install -y {{APP_APT_PACKAGES}}
    
    # enable apache modules
    RUN a2enmod {{APP_APACHE_MODULES}}
    
    # install php packages
    COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/
    RUN install-php-extensions {{APP_PHP_MODULES}}