Skip to content

Commit

Permalink
typo in PWD param
Browse files Browse the repository at this point in the history
  • Loading branch information
joltcan authored and nleush committed Mar 25, 2022
1 parent 023b213 commit a1c892c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ run:
--name=${CONTAINER} \
-e NODE_TLS_REJECT_UNAUTHORIZED=0 \
-p ${PUBLISHPORT}:${EXPOSEPORT} \
-v $(PWD)/config.local.js:/iframely/config.local.js \
-v ${PWD}/config.local.js:/iframely/config.local.js \
$(CONTAINER)

shell:
Expand All @@ -42,13 +42,14 @@ shell:
--name=${CONTAINER} \
-p ${PUBLISHPORT}:${EXPOSEPORT} \
--entrypoint "/bin/ash" \
-v $(PWD)/config.local.js:/iframely/config.local.js \
-v ${PWD}/config.local.js:/iframely/config.local.js \
$(CONTAINER)

exec:
docker exec \
--interactive \
--tty \
--rm \
${CONTAINER} \
/bin/ash

Expand Down

0 comments on commit a1c892c

Please sign in to comment.