diff options
author | terminaldweller <thabogre@gmail.com> | 2021-08-20 15:08:32 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2021-08-20 15:08:32 +0000 |
commit | 4de563ae0ee333a986e3cf6bdd170453e3261e3d (patch) | |
tree | da99522f7e6034f62d122b3987896ce205686b3f /docker | |
parent | using vimplug now. (diff) | |
download | scripts-4de563ae0ee333a986e3cf6bdd170453e3261e3d.tar.gz scripts-4de563ae0ee333a986e3cf6bdd170453e3261e3d.zip |
zsh overhaul
Diffstat (limited to 'docker')
-rwxr-xr-x | docker/ipfs.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docker/ipfs.sh b/docker/ipfs.sh new file mode 100755 index 0000000..ea1c717 --- /dev/null +++ b/docker/ipfs.sh @@ -0,0 +1,3 @@ +#!/usr/bin/env sh + +IPFS_STAGING="/home/devi/.ipfs/staging";IPFS_DATA="/home/devi/.ippfs/data";docker run -d --name ipfs_host -v $IPFS_STAGING:/export -v $IPFS_DATA:/data/ipfs -p 4001:4001 -p 8881:8080 -p 5001:5001 ipfs/go-ipfs:latest |