Created
December 22, 2016 02:15
-
-
Save zmiftah/d5c3b84fa5ab4c7a3ffcf5fd539c745e to your computer and use it in GitHub Desktop.
Overview of Docker Compose
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Define and run multi-container applications with Docker. | |
Usage: | |
docker-compose [-f=<arg>...] [options] [COMMAND] [ARGS...] | |
docker-compose -h|--help | |
Options: | |
-f, --file FILE Specify an alternate compose file (default: docker-compose.yml) | |
-p, --project-name NAME Specify an alternate project name (default: directory name) | |
--verbose Show more output | |
-v, --version Print version and exit | |
-H, --host HOST Daemon socket to connect to | |
--tls Use TLS; implied by --tlsverify | |
--tlscacert CA_PATH Trust certs signed only by this CA | |
--tlscert CLIENT_CERT_PATH Path to TLS certificate file | |
--tlskey TLS_KEY_PATH Path to TLS key file | |
--tlsverify Use TLS and verify the remote | |
--skip-hostname-check Don't check the daemon's hostname against the name specified | |
in the client certificate (for example if your docker host | |
is an IP address) | |
Commands: | |
build Build or rebuild services | |
config Validate and view the compose file | |
create Create services | |
down Stop and remove containers, networks, images, and volumes | |
events Receive real time events from containers | |
help Get help on a command | |
kill Kill containers | |
logs View output from containers | |
pause Pause services | |
port Print the public port for a port binding | |
ps List containers | |
pull Pulls service images | |
restart Restart services | |
rm Remove stopped containers | |
run Run a one-off command | |
scale Set number of containers for a service | |
start Start services | |
stop Stop services | |
unpause Unpause services | |
up Create and start containers | |
version Show the Docker-Compose version information | |
Source [https://docs.docker.com/compose/reference/overview/] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment