visual-journal / docker-compose.yml
misonL's picture
Deploy Next.js Docker Space
c7d34c1 verified
Raw
History Blame
579 Bytes
name: gpt-image-playground-customer
services:
gpt-image-playground:
build:
context: .
image: gpt-image-playground-customer:local
container_name: gpt-image-playground-customer
restart: unless-stopped
env_file:
- path: .env.local
required: false
environment:
NODE_ENV: production
NEXT_TELEMETRY_DISABLED: "1"
APP_LOG_LEVEL: info
AGENT_STATE_BACKEND: sqlite
NEXT_PUBLIC_IMAGE_STORAGE_MODE: fs
PORT: "4783"
ports:
- "4783:4783"
volumes:
- ./generated-images:/app/generated-images