Skip to content

Commit efa664c

Browse files
committed
clarify docs
1 parent b308b18 commit efa664c

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ A collection of one-click buttons and scripts for deploying code-server to vario
2222
- VMs can support many workloads, such as running Docker or Kubernetes clusters
2323
- [👀 Docs for the VM install script](deploy-vm/)
2424
- Deployed containers do not persist, and are often rebuilt
25-
- Containers can shut down when you are not using it, saving you money
25+
- Containers can shut down when you are not using them, saving you money
2626
- All software and dependencies need to be defined in the `Dockerfile` or install script so they aren't destroyed on a rebuild. This is great if you want to have a new, clean environment every time you code
2727
- Storage may not be redundant. You may have to use [rclone](https://rclone.org/) to store your filesystem on a cloud service, for info:
2828
- [📄 Docs for code-server-deploy-container](deploy-container/)

deploy-container/entrypoint.sh

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#!/bin/bash
22

3-
# Allow user to aupply a start dir, default to /home/coder/project
43
START_DIR=/home/coder/project
54

65
# add rclone config and start rclone, if supplied
@@ -24,7 +23,7 @@ else
2423
chmod +x push_remote.sh pull_remote.sh
2524

2625
if rclone ls $RCLONE_REMOTE_PATH; then
27-
# grab the files from the remote instead
26+
# grab the files from the remote instead of re-cloning the git repo
2827
echo "Pulling existing files from remote..."
2928
/home/coder/pull_remote.sh&
3029
else

0 commit comments

Comments
 (0)