2026-04-12 16:43:45 +01:00
|
|
|
services:
|
|
|
|
|
workspace:
|
|
|
|
|
image: mcr.microsoft.com/devcontainers/javascript-node:1-20-bookworm
|
|
|
|
|
command: sleep infinity
|
2026-04-12 21:35:09 +00:00
|
|
|
# Bind mount repo root into the container. With multiple compose files, Dev
|
|
|
|
|
# Containers resolves this relative to the first file in devcontainer.json
|
|
|
|
|
# (../docker-compose.yml at repo root), so "." is the project root.
|
|
|
|
|
volumes:
|
|
|
|
|
- .:/workspace:cached
|
2026-04-12 16:43:45 +01:00
|
|
|
depends_on:
|
|
|
|
|
postgres:
|
|
|
|
|
condition: service_healthy
|
|
|
|
|
redis:
|
|
|
|
|
condition: service_healthy
|