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
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