-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.yaml
More file actions
45 lines (40 loc) · 764 Bytes
/
install.yaml
File metadata and controls
45 lines (40 loc) · 764 Bytes
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
services:
db:
image: mariadb
container_name: mariadbdemo
restart: always
networks:
- back_demo
volumes:
- ./db:/var/lib/mysql
environment:
MARIADB_ROOT_PASSWORD: mysmartrootpassword
MARIADB_DATABASE: drupal
MARIADB_USER: drupal
MARIADB_PASSWORD: drupal
phpmyadmin:
image: phpmyadmin
container_name: phpmyadmindemo
networks:
- back_demo
restart: always
ports:
- "8082:80"
depends_on:
- db
drupal:
container_name: kickstartdemo
image: demo_commerce_kickstart_3
networks:
- front_demo
- back_demo
ports:
- "81:80"
depends_on:
- db
restart: always
volumes:
db:
networks:
front_demo: {}
back_demo: {}