-
Notifications
You must be signed in to change notification settings - Fork 5
/
.ahoy.yml
41 lines (32 loc) · 1 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
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=82 php composer "$@"
usage: Run Composer commands in the php service container.
drupal:
cmd: docker-compose exec --user=82 php vendor/bin/drupal "$@"
usage: Run Drupal Console commands in the php service container.
drush:
cmd: docker-compose exec --user=82 php vendor/bin/drush "$@"
usage: Run Drush commands in the php service container.
download:
cmd: docker-compose exec --user=82 php shell/init.sh
usage: Download and install Drupal.