mirror of
https://github.com/penpot/penpot.git
synced 2025-01-21 14:12:36 -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
|
#!/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 l='ls --color -GFlh'
|
||||||
alias rm='rm -r'
|
alias rm='rm -r'
|
||||||
|
|
|
@ -62,7 +62,7 @@ function run-devenv {
|
||||||
|
|
||||||
function build {
|
function build {
|
||||||
pull-devenv-if-not-exists;
|
pull-devenv-if-not-exists;
|
||||||
docker volume create $DEVENV_PNAME_user_data;
|
docker volume create ${DEVENV_PNAME}_user_data;
|
||||||
docker run -t --rm \
|
docker run -t --rm \
|
||||||
--mount source=${DEVENV_PNAME}_user_data,type=volume,target=/home/penpot/ \
|
--mount source=${DEVENV_PNAME}_user_data,type=volume,target=/home/penpot/ \
|
||||||
--mount source=`pwd`,type=bind,target=/home/penpot/penpot \
|
--mount source=`pwd`,type=bind,target=/home/penpot/penpot \
|
||||||
|
|
Loading…
Add table
Reference in a new issue