chat-with-gpt/docker-compose.yml

16 lines
263 B
YAML
Raw Normal View History

2023-03-14 11:00:40 +00:00
version: '3'
services:
app:
build:
context: .
dockerfile: Dockerfile
working_dir: /app
volumes:
- ./data:/app/data
command: npm run start
ports:
- 3000:3000
environment:
- PORT=3000
- WEBAPP_PORT=3000