This repository was archived by the owner on Apr 13, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
148 lines (140 loc) · 3.1 KB
/
docker-compose.yml
File metadata and controls
148 lines (140 loc) · 3.1 KB
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
version: '3.8'
services:
backend:
build: ./backend
image: oculus/backend:latest
restart: always
container_name: "oculus_backend"
env_file:
- .env
ports:
- "8081:8081"
volumes:
- tmp:/tmp
- shared_data:/data
depends_on:
- mongo
- redis
labels:
- "app=oculus"
- "component=backend"
logging:
driver: "journald"
options:
tag: "oculus"
labels: "app,component"
celery:
build: ./backend
image: oculus/backend:latest
entrypoint: celery
command: -A celery_app.celery_app worker -l info -E
container_name: "oculus_celery"
env_file:
- .env
environment:
CELERY_BROKER_URL: redis://redis
CELERY_RESULT_BACKEND: redis://redis
depends_on:
- redis
volumes:
- shared_data:/data
- tmp:/tmp
- /var/run/docker.sock:/var/run/docker.sock
labels:
- "app=oculus"
- "component=celery"
logging:
driver: "journald"
options:
tag: "oculus"
labels: "app,component"
redis:
image: redis:alpine
container_name: "oculus_redis"
labels:
- "app=oculus"
- "component=redis"
logging:
driver: "journald"
options:
tag: "oculus"
labels: "app,component"
mongo:
image: mongo
container_name: "oculus_mongodb"
restart: always
environment:
MONGO_INITDB_ROOT_USERNAME: ${MONGO_USER}
MONGO_INITDB_ROOT_PASSWORD: ${MONGO_PASSWORD}
MONGO_INITDB_DATABASE: ${MONGO_DB}
# volumes:
# - mongodb_data:/data/db
labels:
- "app=oculus"
- "component=mongo"
logging:
driver: "journald"
options:
tag: "oculus"
labels: "app,component"
frontend:
build: ./frontend
restart: always
container_name: "oculus_frontend"
env_file:
- .env
ports:
- "80:80"
- "443:443"
volumes:
- shared_data:/usr/local/apache2/htdocs/data
- certbot_challenge:/usr/local/apache2/htdocs/challenge #/.well-known/acme-challenge
- ./certs:/etc/letsencrypt
depends_on:
- backend
labels:
- "app=oculus"
- "component=frontend"
logging:
driver: "journald"
options:
tag: "oculus"
labels: "app,component"
certbot:
image: certbot/certbot
container_name: oculus_certbot
restart: always
volumes:
- certbot_challenge:/var/www/certbot
- ./certs:/etc/letsencrypt
- ./frontend/run_certbot.sh:/run_certbot.sh
env_file:
- .env
entrypoint: sh /run_certbot.sh
gjtiff:
build: ./gjtiff
container_name: "oculus_gjtiff"
command: ["sleep", "infinity"]
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: all
capabilities: [gpu]
volumes:
- tmp:/tmp
- shared_data:/data
labels:
- "app=oculus"
- "component=gjitff"
logging:
driver: "journald"
options:
tag: "oculus"
labels: "app,component"
volumes:
certbot_challenge:
shared_data:
tmp:
# mongodb_data: