|
|
|
@ -12,7 +12,7 @@ plugins=(... docker-compose) |
|
|
|
## Aliases |
|
|
|
## Aliases |
|
|
|
|
|
|
|
|
|
|
|
| Alias | Command | Description | |
|
|
|
| Alias | Command | Description | |
|
|
|
|-----------|--------------------------------|------------------------------------------------------------------| |
|
|
|
|-----------|--------------------------------|----------------------------------------------------------------------------------| |
|
|
|
| dco | `docker-compose` | Docker-compose main command | |
|
|
|
| dco | `docker-compose` | Docker-compose main command | |
|
|
|
| dcb | `docker-compose build` | Build containers | |
|
|
|
| dcb | `docker-compose build` | Build containers | |
|
|
|
| dce | `docker-compose exec` | Execute command inside a container | |
|
|
|
| dce | `docker-compose exec` | Execute command inside a container | |
|
|
|
@ -24,6 +24,7 @@ plugins=(... docker-compose) |
|
|
|
| dcup | `docker-compose up` | Build, (re)create, start, and attach to containers for a service | |
|
|
|
| dcup | `docker-compose up` | Build, (re)create, start, and attach to containers for a service | |
|
|
|
| dcupb | `docker-compose up --build` | Same as `dcup`, but build images before starting containers | |
|
|
|
| dcupb | `docker-compose up --build` | Same as `dcup`, but build images before starting containers | |
|
|
|
| dcupd | `docker-compose up -d` | Same as `dcup`, but starts as daemon | |
|
|
|
| dcupd | `docker-compose up -d` | Same as `dcup`, but starts as daemon | |
|
|
|
|
|
|
|
| dcupdb | `docker-compose up -d --build` | Same as `dcup`, but build images before starting containers and starts as daemon | |
|
|
|
| dcdn | `docker-compose down` | Stop and remove containers | |
|
|
|
| dcdn | `docker-compose down` | Stop and remove containers | |
|
|
|
| dcl | `docker-compose logs` | Show logs of container | |
|
|
|
| dcl | `docker-compose logs` | Show logs of container | |
|
|
|
| dclf | `docker-compose logs -f` | Show logs and follow output | |
|
|
|
| dclf | `docker-compose logs -f` | Show logs and follow output | |
|
|
|
|