-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.prod.yml
45 lines (39 loc) · 972 Bytes
/
docker-compose.prod.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
version: "3"
services:
frontend:
image: docker.io/neslinesli93/interprether_frontend:latest
environment:
VIRTUAL_HOST: interprether.tommasopifferi.com
VIRTUAL_PORT: 8080
LETSENCRYPT_HOST: interprether.tommasopifferi.com
depends_on:
- web
- scanner
- redis
web:
image: docker.io/neslinesli93/interprether_backend:latest
restart: unless-stopped
depends_on:
- redis
command: interprether
scanner:
image: docker.io/neslinesli93/interprether_backend:latest
restart: unless-stopped
depends_on:
- redis
environment:
WEB3_PROVIDER_URL: ${WEB3_PROVIDER_URL}
command: scanner
redis:
image: docker.io/bitnami/redis:6.2
environment:
- ALLOW_EMPTY_PASSWORD=yes
- REDIS_DISABLE_COMMANDS=FLUSHDB,FLUSHALL
volumes:
- "redis_data:/bitnami/redis/data"
volumes:
redis_data:
driver: local
networks:
default:
name: interprether_common