Files
console/compose.yml
T
Torsten Dittmann 15c3c95c65 Use dynamic nginx.conf and remove profile config
The commit removes the profile-specific nginx configuration files in
favor of a single nginx.conf, removes server-side profile handling, and
simplifies the base path config.
2025-04-07 18:04:20 +02:00

30 lines
983 B
YAML

services:
console:
image: appwrite/console:dev
build:
context: .
args:
PUBLIC_CONSOLE_MODE: ${PUBLIC_CONSOLE_MODE}
PUBLIC_APPWRITE_ENDPOINT: ${PUBLIC_APPWRITE_ENDPOINT}
PUBLIC_GROWTH_ENDPOINT: ${PUBLIC_GROWTH_ENDPOINT}
PUBLIC_STRIPE_KEY: ${PUBLIC_STRIPE_KEY}
PUBLIC_PROJECT_PROFILE: ${PUBLIC_PROJECT_PROFILE}
SENTRY_AUTH_TOKEN: ${SENTRY_AUTH_TOKEN}
develop:
watch:
- action: rebuild
path: ./
ignore:
- .github
- tests/
- node_modules/
- build/
environment:
- PUBLIC_CONSOLE_MODE
- PUBLIC_APPWRITE_ENDPOINT
- PUBLIC_GROWTH_ENDPOINT
- PUBLIC_STRIPE_KEY
- PUBLIC_PROJECT_PROFILE
ports:
- '3000:80'