-
Notifications
You must be signed in to change notification settings - Fork 5
/
.ahoy.yml
53 lines (41 loc) · 1.32 KB
/
.ahoy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
ahoyapi: v2
commands:
ps:
cmd: docker-compose ps "$@"
usage: List containers.
start:
cmd: docker-compose start "$@"
usage: Start services.
stop:
cmd: docker-compose stop "$@"
usage: Stop services.
restart:
cmd: docker-compose restart "$@"
usage: Restart services.
up:
cmd: docker-compose up -d "$@"
usage: Create and start containers.
down:
cmd: docker-compose down "$@"
usage: Stop and remove containers, networks, images, and volumes.
composer:
cmd: docker-compose exec --user=wodby php composer "$@"
usage: Run Composer commands in the php service container.
drupal:
cmd: docker-compose exec --user=wodby php vendor/bin/drupal "$@"
usage: Run Drupal Console commands in the php service container.
drush:
cmd: docker-compose exec --user=wodby php vendor/bin/drush "$@"
usage: Run Drush commands in the php service container.
blt:
cmd: docker-compose exec --user=wodby php vendor/bin/blt "$@"
usage: Run BLT commands in the php service container.
bash:
cmd: docker-compose exec --user=wodby php bash
usage: Run bash into php service container.
logs:
cmd: docker-compose logs -f "$@"
usage: Show logs
destroy:
cmd: docker-compose down -v
usage: Stop and remove containers, networks, images, and destroy volumes.