-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
33 lines (33 loc) · 858 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
33 lines (33 loc) · 858 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
services:
cms:
build:
context: ./systems/cms
dockerfile: Dockerfile
target: base
command: ./scripts/docker/start.sh
entrypoint: /bin/sh
environment:
- CMS_BASE_URL=http://localhost:4001/
volumes:
- source: ./systems/cms/content
target: /app/content
type: bind
- source: ./systems/cms/public/uploads
target: /app/public/uploads
type: bind
- source: ./systems/cms/tina/tina-lock.json
target: /app/tina/tina-lock.json
type: bind
web:
build:
context: systems/web
dockerfile: Dockerfile
target: base
command: ./scripts/docker/start.sh
depends_on:
cms:
condition: service_healthy
entrypoint: /bin/sh
environment:
- WEB_CMS_BASE_URL=http://cms:4001/
- WEB_BASE_URL=http://localhost:4321