Skip to content

Commit

Permalink
Add docker-compose.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
seheon99 committed Mar 29, 2024
1 parent a8e5e45 commit 40ab182
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
services:
web:
build:
context: .
dockerfile: Dockerfile.development
ports:
- "3000:3000"
volumes:
- ./src:/app/src
- ./public:/app/public
- ./next-env.d.ts:/app/next-env.d.ts
- ./next.config.js:/app/next.config.js
- ./package.json:/app/package.json
- ./tsconfig.json:/app/tsconfig.json

0 comments on commit 40ab182

Please sign in to comment.