-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdocker-compose.yaml
44 lines (43 loc) · 1.21 KB
/
docker-compose.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
services:
fibo-strapi:
image: edmcouncil/fibo-strapi:${BRANCH_NAME:-develop}
build:
context: ./general/strapi
args:
- ONTPUB_FAMILY=fibo
- BRANCH_NAME=${BRANCH_NAME:-develop}
volumes:
# uncomment to use the "permanent" database './general/strapi/db/fibo.db'
# (if it doesn't exist it will be copied from './general/strapi/db/fibo.db.template')
# and the directory "./general/strapi/fibo.uploads" mapped as 'http://fibo-strapi:1337/public/uploads'
#- ./general/strapi/db:/strapi
- spec_root:/opt/html-pages
fibo-pages:
image: edmcouncil/fibo-pages:${BRANCH_NAME:-develop}
build:
context: ./general
args:
- ONTPUB_FAMILY=fibo
- BRANCH_NAME=${BRANCH_NAME:-develop}
environment:
- STRAPI_URL=http://fibo-strapi:1337
volumes:
- spec_root:/opt/html-pages
depends_on:
- fibo-strapi
spec:
image: edmcouncil/spec:${BRANCH_NAME:-develop}
build:
context: ./home
args:
- BRANCH_NAME=${BRANCH_NAME:-develop}
environment:
- FAMILY_REGEX=fibo
volumes:
- spec_root:/opt/html-pages
depends_on:
- fibo-pages
ports:
- 8080:80
volumes:
spec_root: