Files
ltbxd-actorle/docker-compose.override.yaml
thibaud-leclere 6cd6c1ed47 fix: bind vendor with host in dev instead of named volume
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-30 18:41:24 +02:00

34 lines
587 B
YAML

services:
app:
build:
context: .
dockerfile: docker/app/Dockerfile
target: dev
environment:
APP_ENV: dev
volumes:
- .:/app
ports:
- "${PORT_80:-80}:80"
database:
ports:
- "0.0.0.0:5432:5432"
node:
build:
context: .
dockerfile: docker/node/Dockerfile
target: dev
image: git.lclr.dev/thibaud-lclr/ltbxd-actorle/node:latest
volumes:
- .:/app
- node_modules:/app/node_modules
ports:
- "${PORT_5173:-5173}:5173"
depends_on:
- app
volumes:
node_modules: