© 2026 Hedgehog Software, LLC
npx prisma migrate dev
DATABASE_URL="postgresql://moncef:moncef@postgres:5432/imenu-db?schema=public"
version: "3.8" services: postgres: image: postgres:13.5 restart: always environment: - POSTGRES_USER=moncef - POSTGRES_PASSWORD=moncef volumes: - postgres:/var/lib/postgresql/data ports: - "5432:5432" pgadmin: image: dpage/pgadmin4 restart: always ports: - "8888:80" environment: - [email protected] - PGADMIN_DEFAULT_PASSWORD=moncef volumes: - pgadmin-data:/var/lib/pgadmin volumes: postgres: pgadmin-data: