-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
30 lines (29 loc) · 880 Bytes
/
Copy pathdocker-compose.dev.yml
File metadata and controls
30 lines (29 loc) · 880 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
services:
dev:
build:
context: .
ports:
- "5173:5173"
volumes:
# Persistent volumes OUTSIDE /app so bind mount doesn't clobber them.
# The entrypoint.sh creates symlinks from /app subdirs to these paths.
- zig-cache:/cache/zig-cache
- zig-out:/cache/zig-out
- dot-zig-cache:/cache/dot-zig-cache
- docs-node-modules:/deps/docs/node_modules
environment:
- CHOKIDAR_USEPOLLING=true
labels:
playgrounds.github_url: https://github.com/vyakymenko/zigcss
playgrounds.expose: "external:5173"
playgrounds.dockerfile: Dockerfile
playgrounds.branch: dockerized
playgrounds.source_mount: "/app"
playgrounds.start_command: "node dev.js"
playgrounds.production: false
playgrounds.subdomain: zigcss
volumes:
zig-cache:
zig-out:
dot-zig-cache:
docs-node-modules: