Skip to content

Commit

Permalink
✨ Install script
Browse files Browse the repository at this point in the history
  • Loading branch information
wouterds committed Sep 7, 2019
1 parent b8fcfeb commit 9ff8e62
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#!/bin/sh
set -e

# This script is meant for quick & easy install via:
# $ curl -sSL https://github.com/wouterds/rpi-quake3-server/raw/master/install.sh | sh

echo 'Creating ./quake3 directory...'
mkdir quake3
cd quake3

echo 'Downloading assets...'
curl -LO https://github.com/wouterds/rpi-quake3-server/raw/master/docker-compose.yml
curl -LO https://github.com/wouterds/rpi-quake3-server/raw/master/server.cfg
curl -LO https://github.com/wouterds/rpi-quake3-server/releases/download/1.0.0/pak0.pk3

echo ''
echo 'Ready to go!'
echo ''
echo 'You can customize your server settings by editing: ./quake3/server.cfg'
echo 'When ready, start the server by running "cd ./quake && docker-compose up -d"'

0 comments on commit 9ff8e62

Please sign in to comment.