UNPKG

nodejs-gpt

Version:

A ChatGPT implementation using the official ChatGPT model via OpenAI's API.

15 lines (14 loc) 343 B
version: '3' services: app: # build: # context: . # dockerfile: ./Dockerfile image: ghcr.io/waylaidwanderer/node-chatgpt-api:latest restart: unless-stopped environment: - OPENAI_API_KEY=${OPENAI_API_KEY} volumes: - ./settings.js:/app/settings.js:cached ports: - '${APP_PORT:-3000}:3000'