-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
69 lines (61 loc) · 1.69 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
version: '3'
services:
nginx:
image: nginx:latest
ports:
- "80:80"
volumes:
- ${STORAGE_FOLDER}:/usr/share/nginx/html:ro
- ./nginx/nginx.conf:/etc/nginx/conf.d/default.conf:ro
redis:
image: redis:latest
server:
build:
dockerfile: Dockerfile
command: python server.py
environment:
WORKER_BROKER_URL: ${WORKER_BROKER_URL}
WORKER_BACKEND_URL: ${WORKER_BACKEND_URL}
WORKER_APP_NAME: ${WORKER_APP_NAME}
WORKER_TASK_NAME: ${WORKER_TASK_NAME}
WORKER_CALLBACK_URL: ${WORKER_CALLBACK_URL}
STORAGE_FOLDER: ${STORAGE_FOLDER}
STORAGE_BASE_URL: ${STORAGE_BASE_URL}
volumes:
- ./:/app
depends_on:
- redis
worker:
image: ghcr.io/yushiang-demo/dula-net-worker:latest
command: celery -A worker worker --loglevel=info
environment:
WORKER_BROKER_URL: ${WORKER_BROKER_URL}
WORKER_BACKEND_URL: ${WORKER_BACKEND_URL}
WORKER_APP_NAME: ${WORKER_APP_NAME}
WORKER_TASK_NAME: ${WORKER_TASK_NAME}
depends_on:
- redis
mongo:
image: mongo
restart: always
ports:
- "27017:27017"
volumes:
- ./db:/data/db
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: example
mongo-express:
image: mongo-express
restart: always
environment:
ME_CONFIG_BASICAUTH_USERNAME: admin
ME_CONFIG_BASICAUTH_PASSWORD: admin
ME_CONFIG_MONGODB_ADMINUSERNAME: root
ME_CONFIG_MONGODB_ADMINPASSWORD: example
ME_CONFIG_MONGODB_URL: mongodb://root:example@mongo:27017/
ME_CONFIG_SITE_BASEURL: /mongoadmin
depends_on:
- mongo
client:
image: ghcr.io/yushiang-demo/pano-to-mesh:latest