first commit
This commit is contained in:
22
docker-compose.local.yml
Normal file
22
docker-compose.local.yml
Normal file
@@ -0,0 +1,22 @@
|
||||
services:
|
||||
qr-code-api:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile
|
||||
container_name: qr_code_api_local
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- NODE_ENV=development
|
||||
- PORT=3000
|
||||
ports:
|
||||
- "3000:3000"
|
||||
command: npm run dev
|
||||
volumes:
|
||||
- ./:/app
|
||||
- /app/node_modules
|
||||
networks:
|
||||
- qr-local
|
||||
|
||||
networks:
|
||||
qr-local:
|
||||
driver: bridge
|
||||
Reference in New Issue
Block a user