REF: 【Docker】初心者向け NestJS + Next.js の環境構築
REF: PostgreSQL と PgAdmin4 を Docker Compose で立ち上げる
REF: NestJS(Fastify) × TypeORM × PostgreSQL × Docker で環境構築
you can run below command for starting project.
create container for frontend, backend, db, db-gui
docker compose up -d --buildmove to frontend directory
cd frontenddocker bash
docker compose run --rm frontend bashstart project
pnpm devdown bash container
exitmove to frontend directory
cd backenddocker bash
docker compose run --rm backend bashstart project
pnpm start:devdown bash container
exitaccess to http:localhost:8080 and you will see admin dashboard
Tip
If you are having trouble building an environment, please do the following...
docker system prune -a