This is a frontend application implemented in Nuxt 3 for OpenAI's ChatGPT and DALL·E API.
687

This is a frontend application implemented in Nuxt 3 for OpenAI's ChatGPT and DALL·E API.
One-line command for quick deployment:
docker run -d \
-p 80:3000 \
--restart unless-stopped \
--name chatgpt-nuxt \
lianginx/chatgpt-nuxt:latest
To deploy using Docker Compose:
version: "3"
services:
chatgpt-nuxt:
image: lianginx/chatgpt-nuxt:latest
ports:
- 80:3000
restart: unless-stopped
docker-compose up -d # Start and run in the background.
docker-compose stop # Stop
docker-compose down # Stop and delete
When completed, your project will be deployed onto port 80.
If you have any feedback or suggestions for improving this README document, please don’t hesitate to let me know. I appreciate your input.
Move to Github repository to learn more.
This project uses the MIT license.
Content type
Image
Digest
sha256:51821fa8b…
Size
79.7 MB
Last updated
almost 3 years ago
docker pull lianginx/chatgpt-nuxt