File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 11
11
12
12
with :
13
13
api-token : ${{ secrets.SHIPYARD_API_TOKEN }}
14
- timeout-minutes : " 10 "
14
+ timeout-minutes : 10
15
15
- name : Print Env Data
16
16
run : |
17
17
export CYPRESS_BASE_URL=${SHIPYARD_ENVIRONMENT_URL}
Original file line number Diff line number Diff line change @@ -16,6 +16,8 @@ services:
16
16
- ' ./frontend/public:/app/public'
17
17
ports :
18
18
- ' 3000:3000'
19
+ depends_on :
20
+ - backend
19
21
20
22
backend :
21
23
labels :
@@ -32,6 +34,10 @@ services:
32
34
- ' ./backend/src:/srv/src:ro'
33
35
ports :
34
36
- ' 8080:8080'
37
+ depends_on :
38
+ - postgres
39
+ - redis
40
+ - localstack
35
41
36
42
worker :
37
43
labels :
@@ -47,6 +53,10 @@ services:
47
53
- ' ./backend/filesystem/entrypoints:/entrypoints:ro'
48
54
- ' ./backend/migrations:/srv/migrations'
49
55
- ' ./backend/src:/srv/src:ro'
56
+ depends_on :
57
+ - postgres
58
+ - redis
59
+ - localstack
50
60
51
61
postgres :
52
62
image : ' postgres:9.6-alpine'
You can’t perform that action at this time.
0 commit comments