chat-with-gpt / docker-compose.yml
chriscelaya's picture
Upload 6 files
f67edb3
raw
history blame contribute delete
263 Bytes
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