16 lines
564 B
YAML
16 lines
564 B
YAML
services:
|
|
devcontainer:
|
|
image: mcr.microsoft.com/devcontainers/base:ubuntu-22.04
|
|
volumes:
|
|
- ..:/workspaces/dwellops-platform:cached
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
command: sleep infinity
|
|
environment:
|
|
NODE_ENV: development
|
|
DATABASE_URL: postgresql://dwellops:dwellops@postgres:5432/dwellops_dev?schema=public
|
|
BETTER_AUTH_SECRET: devcontainer-secret-change-me-32-chars!
|
|
BETTER_AUTH_URL: http://localhost:3001
|
|
CORS_ORIGIN: http://localhost:3000
|
|
SMTP_HOST: mailpit
|
|
SMTP_PORT: "1025"
|