Spaces:
Runtime error
Runtime error
File size: 325 Bytes
8e20687 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
version: '3.8'
services:
ai-code-translator:
build: .
container_name: ai_code_translator
ports:
- '3001:3000'
volumes:
- .:/app
- /app/node_modules
environment:
- NODE_ENV=development
command: npm run dev
restart: always
security_opt:
- no-new-privileges:true
|