Skip to content

Commit

Permalink
update gcp docs .
Browse files Browse the repository at this point in the history
  • Loading branch information
benfoley committed Nov 29, 2021
1 parent 6895e02 commit f0e69e0
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions docs/wiki/install-elpis-on-gcp-gpu.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,14 @@ For a basic machine, use these settings:
* Add the script below to the `Management` > `Startup scripts` section

```shell
# GPU startup script v0.1
# GPU startup script v0.3

# Check if this has been done before & skip if so
if [[ -f /etc/startup_installed ]]; then exit 0; fi
if [[ -f /etc/startup_installed ]];
then
sudo chmod 666 /var/run/docker.sock
exit 0;
fi


# Install CUDA
Expand Down Expand Up @@ -64,6 +68,9 @@ sudo apt install nvtop
cd ~
git clone https://github.com/CoEDL/elpis.git

# Will make it easier to copy model files etc out of the container
mkdir state

# Pull Docker image
docker pull coedl/elpis:hft

Expand Down

0 comments on commit f0e69e0

Please sign in to comment.