Docker-image 3.3.0 not installing node_modules on iOS

System Information
  • Strapi Version: 3.3.0 Docker image
  • Operating System: iOS Catalina 10.15.7 (19H2)
  • Database: Postgres 13.0 Docker image
  • Node Version: 12.8.0
  • NPM Version: 6.10.2
  • Yarn Version: 1.22.5

Hi @ll
I’m still having issues with the latest image

This problem is present only on iOS as I’ve tested it on Linux Arch and it works without a problem.

Running on iOS with

  • Docker Memory 8GB
  • Docker Swap 4GB

Docker Engine: 19.03.12
Docker Desktop: 2.5.0.1

My docker-compose.yml looks like :point_down:

version: '3.8'
services:
  strapi:
    image: strapi/strapi:3.3.0
    environment:
      DATABASE_CLIENT: postgres
      DATABASE_NAME: strapi
      DATABASE_HOST: postgres
      DATABASE_PORT: 5432
      DATABASE_USERNAME: strapi
      DATABASE_PASSWORD: strapi
    volumes:
      - ./app:/srv/app
    ports:
      - '1337:1337'
    depends_on:
      - postgres

  postgres:
    image: postgres:13.0
    environment:
      POSTGRES_DB: strapi
      POSTGRES_USER: strapi
      POSTGRES_PASSWORD: strapi
    volumes:
      - ./data:/var/lib/postgresql/data

I can confirm that with the latest image version 3.3.2 all issues are solved, I can spin the app without a problem

Just so I can confirm I’m not losing my mind, by iOS here you mean a MacOS computer right and not an Apple mobile device? (AFAIK you can’t run docker on a mobile device)

Hi @DMehaffy,
Indeed, I meant MacOS.