Files
prosapp-migration/docker-compose.yml
T
Lizandro GuarnizoandClaude Sonnet 4.6 aa241d733d Set STORAGE_URL so uploaded files get public URLs
Without this, files were saved with http://localhost:3000/uploads/... URLs
which are unreachable from the browser. Now uses the public backend domain.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-28 17:54:21 -05:00

19 lines
349 B
YAML

services:
backend:
build: ./backend
ports:
- '3001:3001'
environment:
- PORT=3001
- STORAGE_URL=https://backend.prosapp.co/uploads
admin:
build:
context: ./admin
args:
- NEXT_PUBLIC_API_URL=https://backend.prosapp.co/api/v1
ports:
- '5173:3000'
environment:
- PORT=3000