34 lines
908 B
Text
34 lines
908 B
Text
|
|
# Docker Compose Override Example
|
||
|
|
# Copy this file to docker-compose.override.yml to customize your local development environment
|
||
|
|
# This file is git-ignored by default, so you can make local customizations without committing them
|
||
|
|
|
||
|
|
version: '3.8'
|
||
|
|
|
||
|
|
services:
|
||
|
|
# Example: Override backend-api to mount source code for hot reload
|
||
|
|
# backend-api:
|
||
|
|
# volumes:
|
||
|
|
# - ./veza-backend-api:/app
|
||
|
|
# environment:
|
||
|
|
# - API_ENV=development
|
||
|
|
# - DEBUG=true
|
||
|
|
|
||
|
|
# Example: Override frontend to mount source code for hot reload
|
||
|
|
# frontend:
|
||
|
|
# volumes:
|
||
|
|
# - ./apps/web:/app
|
||
|
|
# - /app/node_modules
|
||
|
|
# environment:
|
||
|
|
# - VITE_API_URL=http://localhost:8080/api
|
||
|
|
|
||
|
|
# Example: Override postgres port if 5432 is already in use
|
||
|
|
# postgres:
|
||
|
|
# ports:
|
||
|
|
# - "5433:5432"
|
||
|
|
|
||
|
|
# Example: Add additional environment variables
|
||
|
|
# chat-server:
|
||
|
|
# environment:
|
||
|
|
# - LOG_LEVEL=debug
|
||
|
|
|