0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-21 06:02:32 -05:00

🐛 Fix wrong volume name on devenv and build scripts.

This commit is contained in:
Andrey Antukh 2020-12-09 14:13:25 +01:00 committed by Alonso Torres
parent 1c8de910a6
commit 419eecbe72
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
#!/usr/bin/env bash
export PATH=$HOME/.local/bin:/usr/local/nodejs/bin:$PATH
export PATH=/usr/local/nodejs/bin:$PATH
alias l='ls --color -GFlh'
alias rm='rm -r'

View file

@ -62,7 +62,7 @@ function run-devenv {
function build {
pull-devenv-if-not-exists;
docker volume create $DEVENV_PNAME_user_data;
docker volume create ${DEVENV_PNAME}_user_data;
docker run -t --rm \
--mount source=${DEVENV_PNAME}_user_data,type=volume,target=/home/penpot/ \
--mount source=`pwd`,type=bind,target=/home/penpot/penpot \