Skip to content
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

Docker Nightly : White page (for the BackOffice) #35179

Closed
2 tasks done
Progi1984 opened this issue Jan 26, 2024 · 1 comment · Fixed by #35274
Closed
2 tasks done

Docker Nightly : White page (for the BackOffice) #35179

Progi1984 opened this issue Jan 26, 2024 · 1 comment · Fixed by #35274
Assignees
Labels
Bug Type: Bug Docker Category: Docker Verified The issue has been reproduced
Milestone

Comments

@Progi1984
Copy link
Contributor

Prerequisites

Describe the bug and add attachments

In a new PR on the blockwishlist module, we use this docker compose file :

version: '3.7'

services:
  prestashop:
    image: prestashop/prestashop:${PS_VERSION}-apache
    container_name: prestashop
    depends_on: 
      - mysql
    environment:
      - PS_DEV_MODE=1
      - PS_DOMAIN=localhost
      - PS_LANGUAGE=en
      - PS_COUNTRY=fr
      - PS_INSTALL_AUTO=1
      - PS_FOLDER_ADMIN=admin-dev
      - PS_FOLDER_INSTALL=install-dev
      - ADMIN_MAIL=admin@prestashop.com
      - ADMIN_PASSWD=prestashop
      - DB_SERVER=mysql
      - DB_USER=prestashop
      - DB_PASSWD=prestashop
      - DB_NAME=prestashop
    volumes:
      - type: bind
        # Local Path 
        source: ../../
        # Mount Path
        target: /var/www/html/modules/blockwishlist
    ports:
      - 80:80
  mysql:
    image: mariadb:lts
    container_name: prestashop-mysql
    healthcheck:
      test:
        [
          'CMD',
          'mysqladmin',
          'ping',
          '--host=localhost',
          '--user=prestashop',
          '--password=prestashop',
        ]
      interval: 5s
      timeout: 10s
      retries: 5
    environment:
      - MYSQL_HOST=mysql
      - MYSQL_USER=prestashop
      - MYSQL_PASSWORD=prestashop
      - MYSQL_ROOT_PASSWORD=prestashop
      - MYSQL_PORT=3306
      - MYSQL_DATABASE=prestashop

Only the nightly have a white page in BackOffice.

With 8.0.5 & 8.1.3 we have no problems.

Expected behavior

No response

Steps to reproduce

  1. Use the prestashop/prestashop:nightly-apache image
  2. Go to BO
  3. The page is white
    f6aa9785bc9c7b8fd40c3f6ede6f59112a939527

PrestaShop version(s) where the bug happened

9.0.x

PHP version(s) where the bug happened

No response

If your bug is related to a module, specify its name and its version

docker

Your company or customer's name goes here (if applicable).

@PrestaShopCorp

@Progi1984 Progi1984 added Bug Type: Bug New New issue not yet processed by QA labels Jan 26, 2024
@MatShir MatShir added Verified The issue has been reproduced Docker Category: Docker and removed New New issue not yet processed by QA labels Jan 26, 2024
@Progi1984 Progi1984 added New New issue not yet processed by QA and removed Verified The issue has been reproduced labels Jan 26, 2024
@AureRita AureRita added Ready Status: Issue is ready to be worked on Verified The issue has been reproduced and removed New New issue not yet processed by QA labels Jan 30, 2024
@jolelievre jolelievre reopened this Feb 6, 2024
@Progi1984 Progi1984 added this to the 9.0.0 milestone Feb 20, 2024
@Progi1984
Copy link
Contributor Author

Thanks @jolelievre 💘

@prestashop-issue-bot prestashop-issue-bot bot removed the Ready Status: Issue is ready to be worked on label Feb 20, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug Type: Bug Docker Category: Docker Verified The issue has been reproduced
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants