feat(ci): use absolute paths

This commit is contained in:
Mikołaj Młodzikowski
2023-07-26 16:10:18 +02:00
parent c2018a7783
commit 7956808245
+1 -1
View File
@@ -44,7 +44,7 @@ jobs:
#----------------------------------------------
- name: Run trading server
run: |
docker run -d -p 80:4200 -v ./docker/nginx.conf:/etc/nginx/conf.d/default.conf -v ./dist/apps/trading/exported:/usr/share/nginx/html nginx:1.23-alpine@sha256:6318314189b40e73145a48060bff4783a116c34cc7241532d0d94198fb2c9629
docker run -d -p 80:4200 -v $PWD/docker/nginx.conf:/etc/nginx/conf.d/default.conf -v $PWD/dist/apps/trading/exported:/usr/share/nginx/html nginx:1.23-alpine@sha256:6318314189b40e73145a48060bff4783a116c34cc7241532d0d94198fb2c9629
sleep 5
docker ps
#----------------------------------------------