Closed Aaron1011 closed 4 years ago
It would be useful but very slow. There is a separate script, bootstrap
(or update
) that does the build you refer to. The scripts follow Scripts to Rule Them All: https://github.com/github/scripts-to-rule-them-all
I will modify the documentation to reflect that.
I updated the documentation to explain how to build the images, and also added a docker/script/pull
to download images instead of building them.
I've merged all that to master, it will push to readthedocs shortly. Please join #twks and #twks-ci on TWC Slack to follow development if you're going to be working on this.
Please close this issue once you can try the updated documentation.
The updated documentation works for me - thanks!
The documentation currently states that running
script/server
is sufficient to start the TWKS server. However, this relies on having thetwks-java
already built. Attempting to runscript/server
from a fresh install (no pre-existing Docker images) gives the following error:For
script/server
to work, it's necessary to manually rundocker-compose build
fromdocker/compose/build
. This appears to make the required images available so thatscript/server
can succeed.It would be useful if it was only necessary to run
script/server
to run the TWKS server on a new machine.