docker-compose --help Japanese translation
docker-compose --help
A Japanese translation of the help documentation that appears when you run it.
Use Docker to define and run a multi-container application.
how to use:
docker-compose [-f <arg>...] [options] [--] [COMMAND] [ARGS...]
docker-compose -h|--help
option:
- -f, --file FILE
Specify an alternative compose file (default:
docker-compose.yml
)
- -p, --project-name NAME
Specify an alternate project name (default: directory name)
- -c, --context NAME
Specify the context name.
- --verbose
Show more output.
- --log-level LEVEL
Specify the log level.
- DEBUG
- INFO
- WARNING
- ERROR
- CRITICAL
- --no-ansi
Hides ANSI control characters.
- -v, --version
Show version and exit
- -H, --host HOST
Specify the daemon socket to connect to.
- --tls
Use TLS; implied by
--tlsverify
.
- --tlscacert CA_PATH
Trust certificate signed only by this CA
- --tlscert CLIENT_CERT_PATH
Path to TLS certificate file
- --tlskey TLS_KEY_PATH
Path to TLS key file
- --tlsverify
Check the connection using TLS
- --skip-hostname-check
Prevents the daemon host name from collating with the name specified in the client certificate
- --project-directory PATH
Specifies an alternate working directory (default: compose file path)
- --compatibility
If set, Compose will try to convert the key in the v3 file to a non-Swarm equivalent (deprecated)
- --env-file PATH
Specify an alternate environment file
Commands:
- build
Perform a service build or rebuild
- config
Validate and view compose files
- create
Create a service
- down
Stop and delete containers, networks, images, volumes
- events
Receive real-time events from the container
- exec
Execute the command in the running container.
- help
Display command help.
- images
Enumerate the images.
- kill
Stop the container.
- logs
View the output from the container.
- pause
Pause the service.
- port
Shows the public port for port binding.
- ps
Enumerate the containers.
- pull
Pull the service image.
- push
Push the service image.
- restart
Restart the service.
- rm
Delete the stopped container.
- run
Executes a one-time command.
- scale
Specifies the number of containers used for the service.
- start
Start the service.
- stop
Stop the service.
- top
Shows the running processes.
- unpause
Unpause the service.
- up
Create and start a container.
- version
Display version information and exit.