This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This script helps with getting Frappe/ERPNext running quickly using | |
# the upstream Compose specifications. Not intended for production. | |
# | |
# Usage: | |
# | |
# $ git clone https://github.com/frappe/frappe_docker | |
# $ cd frappe_docker | |
# $ curl -Lo erpnext.sh <URL to this raw gist> | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
WORK_DIR=$(pwd) | |
cd "$HOME" || exit | |
echo "Downloading patchelf binary from ArchLinux repos" | |
mkdir -p patchelf-temp | |
#curl -L https://github.com/Jebaitedneko/docker/raw/ubuntu/patchelf | |
curl -L https://archlinux.org/packages/extra/x86_64/patchelf/download | bsdtar -C patchelf-temp -xf - | |
mv "$HOME"/patchelf-temp/usr/bin/patchelf "$HOME"/ | |
rm -rf "$HOME"/patchelf-temp |