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:
parent
1c8de910a6
commit
419eecbe72
2 changed files with 2 additions and 2 deletions
|
@ -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'
|
||||
|
|
|
@ -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 \
|
||||
|
|
Loading…
Add table
Reference in a new issue