13 lines
379 B
Plaintext
13 lines
379 B
Plaintext
% docker-compose
|
|
|
|
# Builds, (re)creates, starts, and attaches to containers for all services
|
|
sudo docker-compose -f <file> up
|
|
|
|
# Builds, (re)creates, starts, and dettaches to containers for all services
|
|
sudo docker-compose -f <file> up -d
|
|
|
|
# Stops containers and removes containers, networks created by up
|
|
sudo docker-compose -f <file> down
|
|
|
|
$ file: ls *.yaml | awk '{print $1}'
|