# Development override for docker-compose
# Copy this file to docker-compose.override.yml for local development
version: '3.8'
services:
proofmode:
# Build locally instead of using image
build:
context: .
dockerfile: Dockerfile
# Development environment
environment:
- RUST_LOG=debug
# Mount source code for development
volumes:
- ./src:/app/src:ro
- ./Cargo.toml:/app/Cargo.toml:ro
- ./Cargo.lock:/app/Cargo.lock:ro
# Enable all optional services for development
profiles: []
# Enable IPFS in development
ipfs:
profiles: []
# Enable PostgreSQL in development
postgres:
profiles: []
environment:
- POSTGRES_PASSWORD=devpassword