This commit is contained in:
paoloar77
2024-01-24 15:55:19 +01:00
commit 59125af476
33 changed files with 11191 additions and 0 deletions

14
docker-compose.yml Normal file
View File

@@ -0,0 +1,14 @@
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:-3100}:3100'