-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
41 lines (37 loc) · 822 Bytes
/
docker-compose.yml
File metadata and controls
41 lines (37 loc) · 822 Bytes
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
services:
postgres:
image: postgres:16.2
restart: always
environment:
POSTGRES_DB: CRM
POSTGRES_PASSWORD: 2024@09$14&Start
POSTGRES_USER: root
volumes:
- /opt/crm_demo/postgres/data:/var/lib/postgresql/data
ports:
- 5432:5432
networks:
- crm-network
redis:
image: redis:7.2
restart: always
command: redis-server --requirepass 20241030Deploy
ports:
- 6379:6379
networks:
- crm-network
crm.blazor.web:
image: registry.cn-hangzhou.aliyuncs.com/abp_radzenui_demo/crmblazorweb:latest
restart: always
environment:
ASPNETCORE_ENVIRONMENT: Production
depends_on:
- redis
- postgres
ports:
- 80:8080
networks:
- crm-network
networks:
crm-network:
driver: bridge