-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
V10 for Test #39
Comments
PHP >= 7.4.0 required |
Thanks, Do you will push on Docker Hub ? I will test this this week. I will close this ticket after 😁😋 |
@eduardofraga Você tem o Dockerfile da versão 10 ai fácil? Eu subi aqui uma instância mas fica loopando no install.php e não abre o GLPI. Eu modifiquei o Dockerfile pra utilizar a versão 7.4 do PHP:
E utilizar a seguinte release:
|
@gpontespc Boa tarde, aqui está o dockerfile, nota que precisas da restante estrutura de ficheiros e pastas (scripts e php.d e conf.d ) FROM centos:7 MAINTAINER eduardo@fametec.com.br ENV VERSION 10.0.0-rc3 ENV GLPI_LANG pt_BR ENV MARIADB_HOST mariadb-glpi ENV MARIADB_PORT 3306 ENV MARIADB_DATABASE glpi ENV MARIADB_USER glpi ENV MARIADB_PASSWORD glpi WORKDIR /var/www/html RUN yum -y install epel-release yum-utils RUN yum -y install http://rpms.remirepo.net/enterprise/remi-release-7.rpm RUN yum-config-manager --enable remi-php74 RUN yum -y install ADD php.d /etc/php.d ADD conf.d /etc/httpd/conf.d COPY --chown=apache:apache src/glpi /var/www/htmlADD https://github.com/glpi-project/glpi/releases/download/10.0.0-rc3/glpi-10.0.0-rc3.tgz /tmp/ RUN tar -zxf /tmp/glpi-10.0.0-rc3.tgz -C /tmp/ VOLUME [ "/var/www/html/files", "/var/www/html/plugins" ] ADD scripts/glpi-entrypoint.sh scripts/plugins.sh / RUN chmod 755 /glpi-entrypoint.sh /plugins.sh EXPOSE 80/tcp CMD ["/glpi-entrypoint.sh"] |
Hello,
Can you maak a Dockerfile for V10 ?
https://github.com/fametec/glpi/blob/master/docker/apache/Dockerfile
With
https://github.com/glpi-project/glpi/releases/download/10.0.0-beta/glpi-10.0.0-beta.tgz
If you want I can take a fork but a I think the speedest is it's you make a new version directly
The text was updated successfully, but these errors were encountered: