Compare commits
No commits in common. "9fc2175dcdd1fd57a3e1219509fa47f76ebf95c7" and "568fcaafd11c381042862745aba087d196d07401" have entirely different histories.
9fc2175dcd
...
568fcaafd1
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
if [ $(basename $(readlink $PWD)) != $(hostname) ]; then
|
if [ $(basename $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 $(readlink $PWD)) != $(hostname) ]; then
|
if [ $(basename $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
|
||||||
- /mnt/data/storage/stash-meta/config:/root/.stash
|
- 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