44
55## Docker creation
66
7- You can easly create new docker instances (from my or a custom docker boilerplate) also with code intalization
7+ You can easily create new docker instances (from my or a custom docker boilerplate) also with code initialization
88and Makefile running.
99
1010``` bash
@@ -32,8 +32,8 @@ ct docker:create foobar --code=git... --make=build --up
3232
3333## Docker startup
3434
35- The ` docker:up ` command will search the ` docker-compose.yml ` in the current parent directroy tree and
36- execute ` docker-compose ` from this directroy - you don't have to change the current directroy .
35+ The ` docker:up ` command will search the ` docker-compose.yml ` in the current parent directory tree and
36+ execute ` docker-compose ` from this directory - you don't have to change the current directory .
3737
3838Also the previous docker instance will be shut down to avoid port conflicts.
3939
@@ -45,7 +45,7 @@ ct docker:up
4545## Custom docker commands
4646
4747As ` docker:up ` the ` docker:compose ` will search the ` docker-compose.yml ` and will execute your command
48- from this directroy .
48+ from this directory .
4949
5050``` bash
5151# Stop docker instance
@@ -86,7 +86,7 @@ ct docker:exec ps
8686
8787You can define a common CLI script entrypoint with the environment variable CLI_SCRIPT in your docker containers.
8888The environment variable will be read by ` ct docker:cli ` and will be executed - you don't have to jump
89- into your containers, you can start your CLI_SCRIPTs from the outide .
89+ into your containers, you can start your CLI_SCRIPTs from the outside .
9090
9191``` bash
9292# Execute predefined cli command with argument "help" in "main" container
@@ -110,7 +110,7 @@ ct docker:sniff mysql
110110```
111111
112112## Docker cleanup
113- Docker currently doesn't cleanup orphaned images or volumes so you have to cleanup your system regulary to get free disk space
113+ Docker currently doesn't cleanup orphaned images or volumes so you have to cleanup your system regularly to get free disk space
114114
115115``` bash
116116ct docker:cleanup
0 commit comments