forked from google/ctfscoreboard
-
Notifications
You must be signed in to change notification settings - Fork 0
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
2 changed files
with
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Core Team: | ||
|
||
Andrew Griffiths <[email protected]> | ||
David Tomaschik <[email protected]> | ||
Niru Ragupathy <[email protected]> | ||
Zacahary Wade <[email protected]> |
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 |
---|---|---|
|
@@ -6,23 +6,27 @@ competitors, and a handful of other features. | |
Copyright 2016 Google, Inc. | ||
This is not an official Google product. | ||
|
||
Author: David Tomaschik <[email protected]> | ||
Author: Please see the AUTHORS file. | ||
|
||
|
||
### Installation using Docker ### | ||
1. Navigate to the folder where the Dockerfile is located. | ||
|
||
2. Run the command below to build a docker image for the scoreboard and tag it as "scoreboard". <br/> | ||
2. Run the command below to build a docker image for the scoreboard and tag it as "scoreboard". | ||
|
||
docker build -t "scoreboard" . | ||
|
||
3. Run the command below to create the docker container.<br /> | ||
3. Run the command below to create the docker container. | ||
|
||
docker create -p 80:80 scoreboard | ||
|
||
|
||
4. Find the name of the container you created for the scoreboard. <br /> | ||
4. Find the name of the container you created for the scoreboard. | ||
|
||
docker ls -a | ||
|
||
5. Run the command below to start the docker container for the scoreboard. <br /> | ||
5. Run the command below to start the docker container for the scoreboard. | ||
|
||
docker start "container_name" | ||
|
||
|
||
|