-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
45 lines (42 loc) · 994 Bytes
/
docker-compose.dev.yml
File metadata and controls
45 lines (42 loc) · 994 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
version: '3.8'
services:
# Development-only services
app:
build:
context: .
dockerfile: Dockerfile.dev
volumes:
- .:/app
- /app/node_modules
command: npm run dev
environment:
- NODE_ENV=development
- DEBUG=browser-explorer:*
# Playwright debug viewer
playwright-trace:
image: mcr.microsoft.com/playwright:v1.40.0-focal
container_name: browser-explorer-playwright-trace
volumes:
- ./traces:/traces
ports:
- "9323:9323"
command: npx playwright show-trace /traces
profiles:
- debug
networks:
- browser-explorer-network
# pgAdmin for database management
pgadmin:
image: dpage/pgadmin4:latest
container_name: browser-explorer-pgadmin
environment:
PGADMIN_DEFAULT_EMAIL: admin@example.com
PGADMIN_DEFAULT_PASSWORD: admin
ports:
- "5050:80"
depends_on:
- postgres
profiles:
- tools
networks:
- browser-explorer-network