Compare commits
2 Commits
568fcaafd1
...
9fc2175dcd
Author | SHA1 | Date | |
---|---|---|---|
--set | 9fc2175dcd | ||
--set | 6e89707032 |
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
if [ $(basename $PWD) != $(hostname) ]; then
|
if [ $(basename $(readlink $PWD)) != $(hostname) ]; then
|
||||||
echo "Incorrect directory for host"
|
echo "Incorrect directory for host"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
if [ $(basename $PWD) != $(hostname) ]; then
|
if [ $(basename $(readlink $PWD)) != $(hostname) ]; then
|
||||||
echo "Incorrect directory for host"
|
echo "Incorrect directory for host"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -28,7 +28,7 @@ services:
|
||||||
- /etc/localtime:/etc/localtime:ro
|
- /etc/localtime:/etc/localtime:ro
|
||||||
## Adjust below paths (the left part) to your liking.
|
## Adjust below paths (the left part) to your liking.
|
||||||
## E.g. you can change ./config:/root/.stash to ./stash:/root/.stash
|
## E.g. you can change ./config:/root/.stash to ./stash:/root/.stash
|
||||||
- config:/root/.stash
|
- /mnt/data/storage/stash-meta/config:/root/.stash
|
||||||
- /mnt/data/storage/stash-meta/metadata:/metadata
|
- /mnt/data/storage/stash-meta/metadata:/metadata
|
||||||
- /mnt/data/storage/stash-meta/cache:/cache
|
- /mnt/data/storage/stash-meta/cache:/cache
|
||||||
- /mnt/data/storage/stash-meta/generated:/generated
|
- /mnt/data/storage/stash-meta/generated:/generated
|
||||||
|
|
Loading…
Reference in New Issue