File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -19,3 +19,4 @@ npm-debug.log
19
19
yarn-error.log
20
20
testem.log
21
21
.env
22
+ docker-compose.override.yml
Original file line number Diff line number Diff line change @@ -28,9 +28,11 @@ services:
28
28
volumes :
29
29
# Mount the src/ directory so we don't have to rebuild the Docker image
30
30
# when we want to change some code
31
- - ./src:/app/src
31
+ - ./src:/app/src:ro
32
+
32
33
- index:/app/tmp
33
- - cargo-cache:/app/target
34
+ - cargo-cache:/usr/local/cargo/registry
35
+ - target-cache:/app/target
34
36
frontend :
35
37
build :
36
38
context : .
@@ -42,9 +44,10 @@ services:
42
44
- 4200:4200
43
45
volumes :
44
46
# Mount the app/ directory so live reload works
45
- - ./app:/app/app
47
+ - ./app:/app/app:ro
46
48
47
49
volumes :
48
50
postgres-data :
49
51
cargo-cache :
52
+ target-cache :
50
53
index :
You can’t perform that action at this time.
0 commit comments