File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 16
16
package-manager : npm
17
17
working-directory : test
18
18
- cypress/run-tests :
19
- cypress-command : npx wait-on@latest http://localhost:8089 && cd test && npx cypress run
19
+ cypress-command : npx cypress run
20
20
working-directory : test
21
21
workflows :
22
22
use-my-orb :
Original file line number Diff line number Diff line change 12
12
13
13
source .env
14
14
15
+ # Create temporary container to copy nginx config
16
+ docker volume create project_nginx_conf
17
+ docker container create --name nginx_tmp -v project_nginx_conf:/etc/nginx/conf.d alpine
18
+ docker cp nginx/default.conf nginx_tmp:/etc/nginx/conf.d/
19
+ docker rm nginx_tmp
20
+
15
21
# Run Docker Compose without local volumes
16
22
docker-compose up --build --no-deps -d
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ services:
59
59
ports :
60
60
- 8089:80
61
61
volumes :
62
- - ./nginx/default.conf :/etc/nginx/conf.d/default.conf
62
+ - nginx_conf :/etc/nginx/conf.d
63
63
depends_on :
64
64
- api
65
65
- frontend
@@ -78,3 +78,4 @@ networks:
78
78
79
79
volumes :
80
80
postgres_data :
81
+ nginx_conf :
You can’t perform that action at this time.
0 commit comments