docker-compose
infrastructure application stacks for Camp Fitch Tech Focus.
The top level consists of a list of various directories representing the logical function of the stack.
For example: resolver
, lancache
. Within each stack directory is a docker-compose.yaml
which contains
the directives needed to compose that stack.
To anyone familiar with docker-compose
this should smell familiar:
cd ${stack_dir}
docker-compose up -d
cd ${stack_dir}
docker-compose down
You can restart a particular service (as named in the docker-compose.yaml
or all of them by omission.
cd ${stack_dir}
docker-compose restart [service]