ltbxd-actorle/docker-compose.override.yaml

39 lines
787 B
YAML
Raw Normal View History

services:
app:
build:
context: .
dockerfile: docker/app/Dockerfile
target: dev
environment:
APP_ENV: dev
volumes:
- .:/app
ports:
2026-03-30 10:13:19 +00:00
- "${PORT_80:-80}:80"
messenger:
command: ["php", "-d", "memory_limit=512M", "bin/console", "messenger:consume", "async", "--time-limit=3600", "--memory-limit=256M", "-vv", "--no-debug"]
volumes:
- .:/app
database:
ports:
- "0.0.0.0:5432:5432"
node:
build:
context: .
dockerfile: docker/node/Dockerfile
target: dev
2026-03-28 12:54:43 +00:00
image: git.lclr.dev/thibaud-lclr/ltbxd-actorle/node:latest
volumes:
- .:/app
- node_modules:/app/node_modules
ports:
2026-03-30 10:13:19 +00:00
- "${PORT_5173:-5173}:5173"
depends_on:
- app
volumes:
node_modules: