Git Product home page Git Product logo

Comments (4)

aheinze avatar aheinze commented on May 18, 2024 1

Looks like mod_rewrite is not enabled. Try to add:

RUN a2enmod rewrite

from cockpit.

thacoon avatar thacoon commented on May 18, 2024

Thanks a lot, the following works:

FROM php:8.0-rc-apache-buster

RUN apt-get update \
    && apt-get install -y \
        wget zip unzip \
        libzip-dev \
        libfreetype6-dev \
        libjpeg62-turbo-dev \
        libpng-dev \
        sqlite3 libsqlite3-dev \
        libssl-dev \
    && pecl install mongodb \
    && pecl install redis \
    && docker-php-ext-install -j$(nproc) iconv gd pdo zip opcache pdo_sqlite

RUN a2enmod rewrite && a2enmod rewrite expires

RUN echo "extension=mongodb.so" > /usr/local/etc/php/conf.d/mongodb.ini
RUN echo "extension=redis.so" > /usr/local/etc/php/conf.d/redis.ini

RUN wget https://files.getcockpit.com/releases/master/cockpit-core.zip \
    && unzip cockpit-core.zip -d /tmp \
    && rm cockpit-core.zip \
    && cd /tmp/cockpit-core \
    && cp -Rp . /var/www/html \
    && cd /var/www/html \
    && rm -r /tmp/cockpit-core

ENV DOCUMENT_ROOT /var/www/html

# COPY config.php /var/www/html/config/config.php

RUN chown -R www-data:www-data /var/www/html

CMD ["apache2-foreground"]

from cockpit.

aheinze avatar aheinze commented on May 18, 2024

You can also try this https://hub.docker.com/repository/docker/cockpithq/cockpit

from cockpit.

thacoon avatar thacoon commented on May 18, 2024

Nice, thanks +1

from cockpit.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.