forked from mozilla/bedrock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
163 lines (150 loc) · 4.21 KB
/
docker-compose.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
services:
# Run webpack-dev-server and compile static assets.
#
# This is the primary server and it proxies the
# Django app so that Webpack can watch for file changes.
assets:
build:
context: .
target: assets
image: mozmeao/bedrock_assets:${GIT_COMMIT:-latest}
platform: linux/amd64
command: npm run watch
ports:
- "8000-8010:8000-8010"
volumes:
- ./media/:/app/media:delegated
- ./bedrock/:/app/bedrock:delegated
- ./assets/:/app/assets:delegated
environment:
WP_PROXY_URL: "http://app:8080"
# the django app
app:
build:
context: .
target: devapp
image: mozmeao/bedrock_test:${GIT_COMMIT:-latest}
platform: linux/amd64
command: python manage.py runserver 0.0.0.0:8080
env_file:
- docker/envfiles/local.env
- .env
ports:
- "8080:8080"
volumes:
- ./bedrock/:/app/bedrock:delegated
- ./bin/:/app/bin:delegated
- ./docker/:/app/docker:delegated
- ./etc/:/app/etc:delegated
- ./lib/:/app/lib:delegated
- ./docs/:/app/docs:delegated
- ./media/:/app/media:delegated
- ./root_files/:/app/root_files:delegated
- ./scripts/:/app/scripts:delegated
- ./wsgi/:/app/wsgi:delegated
- ./locale/:/app/locale:delegated
- ./l10n/:/app/l10n:delegated
- ./assets/:/app/assets:delegated
# Standalone postgres database - for local runserver development.
# TODO: add this as a dependency of app/test/release
db:
image: postgres:15-alpine
environment:
POSTGRES_PASSWORD: postgres
ports:
- "5432:5432"
redis:
image: redis
platform: linux/amd64
worker:
image: mozmeao/bedrock_test:${GIT_COMMIT:-latest}
platform: linux/amd64
restart: unless-stopped
volumes:
- .:/app
env_file:
- docker/envfiles/local.env
- .env
depends_on:
- db
- redis
command:
./bin/run-worker.sh
# run the tests against local changes
test:
image: mozmeao/bedrock_test:${GIT_COMMIT:-latest}
env_file: docker/envfiles/test.env
volumes:
- ./bedrock/:/app/bedrock:delegated
- ./bin/:/app/bin:delegated
- ./docker/:/app/docker:delegated
- ./etc/:/app/etc:delegated
- ./lib/:/app/lib:delegated
- ./media/:/app/media:delegated
- ./root_files/:/app/root_files:delegated
- ./scripts/:/app/scripts:delegated
- ./tests/:/app/tests:delegated
- ./test_infra/:/app/test_infra:delegated
- ./wsgi/:/app/wsgi:delegated
- ./l10n/:/app/l10n:delegated
# run tests with no volumes
test-image:
image: mozmeao/bedrock_test:${GIT_COMMIT:-latest}
env_file: docker/envfiles/test.env
# the django app
release:
build:
context: .
target: release
args:
GIT_SHA: ${GIT_COMMIT:-latest}
image: mozmeao/bedrock:${GIT_COMMIT:-latest}
platform: linux/amd64
release-local:
image: mozmeao/bedrock:${GIT_COMMIT:-latest}
env_file:
- docker/envfiles/local.env
- .env
environment:
RUN_SUPERVISOR: "true"
ports:
- "8000:8000"
volumes:
- ./bedrock/:/app/bedrock:delegated
- ./bin/:/app/bin:delegated
- ./docker/:/app/docker:delegated
- ./etc/:/app/etc:delegated
- ./lib/:/app/lib:delegated
- ./root_files/:/app/root_files:delegated
- ./scripts/:/app/scripts:delegated
- ./wsgi/:/app/wsgi:delegated
- ./locale/:/app/locale:delegated
- ./l10n/:/app/l10n:delegated
docs:
image: mozmeao/bedrock_test:${GIT_COMMIT:-latest}
platform: linux/amd64
command: sphinx-autobuild "docs" "docs/_build/html" --host 0.0.0.0 --port 8100
ports:
- "8100:8100"
volumes:
- ./docs/:/app/docs:delegated
builder:
build:
context: .
target: python-builder
image: mozmeao/bedrock_build:${GIT_COMMIT:-latest}
platform: linux/amd64
app-base:
build:
context: .
target: app-base
image: mozmeao/bedrock_code:${GIT_COMMIT:-latest}
platform: linux/amd64
# Python dependency management
compile-requirements:
image: mozmeao/bedrock_build:${GIT_COMMIT:-latest}
platform: linux/amd64
command:
./bin/compile-requirements.sh
volumes:
- .:/app