The first time
git clone
this projectcd community/
<secrets-zip>
in the root of the projectEvery time
docker-compose up --build
This will bring up the following containers:
localhost:8000
communitystorage
in Google Cloud Storage.Networking in docker-compose:
docker-compose.yml
Docker volumes for sharing data between containers.
Useful commands:
docker system prune
- remove all dangling imagesdocker ps -a
- list all containersdocker stop <x>
, docker remove <x>
to remove containersdocker exec -it <x> /bin/bash
- to interactively connect to a containerdocker-compose up --build