Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ curl -L "https://github.com/docker/compose/releases/download/v2.1.1/docker-compo
sudo chmod +x /usr/local/bin/docker-compose
ln -sf /usr/local/bin/docker-compose /usr/bin
sudo systemctl start docker
sudo usermod -aG docker $USER
newgrp docker
```

#### Install ERPNext
Expand All @@ -67,7 +69,8 @@ We assume that you are already familiar with Docker, and you can modify [docker-
git clone --depth=1 https://github.com/Websoft9/docker-erpnext
cd docker-erpnext
public_ip=`wget -O - https://download.websoft9.com/ansible/get_ip.sh | bash`
sudo sed -i s/erp.example.com/$public_ip/g ./.env
sudo sed -i s/erpnext.example.com/$public_ip/g ./.env
docker network create -d bridge websoft9
docker-compose up -d
```

Expand Down