forked from GlenDC/docker-quake3
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
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"' |