-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.yaml
44 lines (41 loc) · 1 KB
/
template.yaml
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
name: default
description: Default template for Stack Wordpress
types:
- app-template
inputs:
- label: Project name
type: text
name: project_name
default: project-name
- label: Wordpress Server Port
type: int
name: wordpress_server_port
default: 81
- label: Wordpress Database Name
type: text
name: wordpress_database_name
default: wp_stackspot
- label: Wordpress Database Port
type: int
name: wordpress_database_port
default: 3306
- label: Wordpress Database UserName
type: text
name: wordpress_database_username
default: wp_stackspot
- label: Wordpress Database Password
type: text
name: wordpress_database_password
default: wp_stackspot
- label: Wordpress Docker Image
type: text
name: wordpress_docker_image
default: 6.0.1
global-computed-inputs:
src_base_path: "src"
hooks:
- type: run
trigger: after-render
commands:
- "echo 'Running the Docker Compose :: Build...'"
- "docker-compose build"