Warning, this project is still in the early stages
This directory contains Docker Compose files for running the code.org website locally for development and CI purposes.
Caveats:
- Only practical on Linux right now - technically works on Mac, but the site runs too slowly to be usable due to poor file system performance for bind-mounted volumes in Docker for Mac.
- Google OAuth for AWS credentials works slightly differently, since code inside the container can't open access your browser directly. Instead, when you need to authenticate, the console will output a link, which you copy and open in your browser, and then paste the auth token you get back into the console. (EC2 users can ignore this.)
Install:
- Docker
- Docker Compose
Run all docker-compose commands from this directory.
-
Add these lines to your .bashrc or .bash_profile to set the FIXUID and FIXGID env variables automatically. Then
source
your .bashrc/.bash_profile.export FIXUID=$(id -u) export FIXGID=$(id -g)
-
Run the following command. This recreates most of the SETUP.md instructions, and will probably take a long time:
docker-compose -f setup-compose.yml up
-
Setup the rest of your locals.yml file as normal.
Run the code.org website locally:
docker-compose -f site-compose.yml up
File changes on your host machine will be picked up by the server like normal.
Stop the server:
docker-compose -f site-compose.yml down
Start bash in a new container (for now, this is how you do anything else, e.g. run bin/ scripts or tests):
docker-compose -f site-compose.yml run site bash
Clean up stopped containers:
docker-compose -f site-compose.yml down
The Docker Compose files use a bind-mount to make the entire code-dot-org source directory readable and writeable from within the container. They also use volume mounts to persist stateful data across multiple container runs, such as the mysql tables, rbenv gems, etc. If needed, you can manage containers and volumes using the docker CLI.