Hi, I got an error (docker: Error response from da...
# caravel
n
Hi, I got an error (docker: Error response from daemon: Duplicate mount point: ../caravel) when do
make user_project_wrapper
? Can someone suggest how to fix it? Thanks
m
Make sure your environment variables are absolute paths and not relative paths.
CARAVEL_ROOT
,
OPENLANE_ROOT
,
PDK_ROOT
n
Hi @User They are all set with absolute paths
Copy code
export OPENLANE_ROOT=/home/nguyendao/SKY130/gg-mpw5-2022/mpw5-eFPGA/openlane
export PDK_ROOT=/home/nguyendao/SKY130/gg-mpw5-2022/mpw5-eFPGA/pdks
export CARAVEL_ROOT=/home/nguyendao/SKY130/gg-mpw5-2022/open_eFPGA/caravel
m
hmmm.
n
someone suggests using `docker-compose down`; then
docker compose up
that requires docker-compose.yml, but I couldn’t find docker-compose.yml?
a
Yeah this doesn't use docker compose, you're probably trying to mount the same thing twice in your docker file, do you already have something on
../caravel
n
@User yes, it’s CARAVEL_ROOT
image.png
m
Try
make user_project_wrapper
in the parent directory. Not
openlane
.
/home/nguyendao/SKY130/gg-mpw5-2022/open_eFPGA
🙌 1
n
yeah, that works. Thank you!
👍 1