Compare commits
No commits in common. "9fc2175dcdd1fd57a3e1219509fa47f76ebf95c7" and "568fcaafd11c381042862745aba087d196d07401" have entirely different histories.
9fc2175dcd
...
568fcaafd1
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
if [ $(basename $(readlink $PWD)) != $(hostname) ]; then
|
||||
if [ $(basename $PWD) != $(hostname) ]; then
|
||||
echo "Incorrect directory for host"
|
||||
exit 1
|
||||
fi
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
if [ $(basename $(readlink $PWD)) != $(hostname) ]; then
|
||||
if [ $(basename $PWD) != $(hostname) ]; then
|
||||
echo "Incorrect directory for host"
|
||||
exit 1
|
||||
fi
|
||||
|
|
|
@ -28,7 +28,7 @@ services:
|
|||
- /etc/localtime:/etc/localtime:ro
|
||||
## Adjust below paths (the left part) to your liking.
|
||||
## 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/cache:/cache
|
||||
- /mnt/data/storage/stash-meta/generated:/generated
|
||||
|
|
Loading…
Reference in New Issue