-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
actually making this a real build repo by utilizing jberrenbergs dock…
…erfile and init file...just incase :)
- Loading branch information
Loria, Mario
committed
Aug 27, 2015
1 parent
54751d7
commit c2f9e2e
Showing
4 changed files
with
55 additions
and
5 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
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
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,14 @@ | ||
#!/usr/bin/env sh | ||
|
||
if [ -f "/opt/quake3/baseq3/pak0.pk3" ] | ||
then | ||
if [ -z "$CONFIG" ]; then | ||
su q3a -c "quake3ded +set fs_game ${FS_GAME} $@" | ||
else | ||
su q3a -c "quake3ded +set fs_game ${FS_GAME} +exec ${CONFIG} $@" | ||
fi | ||
else | ||
echo "You need to provide a valid pak0.pk3 e.g. using:" | ||
echo '-v ${PAK0}:/opt/quake3/baseq3/pak0.pk3' | ||
exit 1 | ||
fi |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
quake3: | ||
image: jberrenberg/quake3 | ||
image: inanimate/quake3 | ||
restart: always | ||
ports: | ||
- "27960:27960/udp" | ||
|