-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.override.yml
44 lines (39 loc) · 1.06 KB
/
docker-compose.override.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
version: '3.3'
services:
web:
# environment:
# - PYTHONDEVMODE=1
volumes:
- ./fiesta/:/usr/src/app/
- ./conf/certs:/usr/share/certs
- web_static_files:/usr/src/static
- webpack_build:/usr/src/build
build:
args:
- POETRY_EXPORT_ARGS=--dev
proxy:
volumes:
- ./nginx/nginx.conf.template:/etc/nginx/templates/nginx.conf.template
- web_static_files:/var/static
- webpack_build:/var/build
webpack:
environment:
PUBLIC_PATH: //webpack.${ROOT_DOMAIN}/static/
NODE_ENV: development
volumes:
- ./webpack/:/usr/src/app
# since tailwind need to access templates and all the stuff to dynamically strip classes
# see more in webpack/tailwind.config.js
- ./fiesta/:/usr/src/fiesta
- webpack_build:/usr/src/build
dockerproxy:
environment:
- DISABLE_ACCESS_LOGS=1
volumes:
- ./conf/certs:/etc/nginx/certs
legacydb:
volumes:
- ./legacy.sql:/docker-entrypoint-initdb.d/legacy.sql
wikifetcher:
volumes:
- ./wiki/:/usr/src/app/