forked from Kevin737866/-stellar-analytics-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
36 lines (32 loc) · 773 Bytes
/
docker-compose.dev.yml
File metadata and controls
36 lines (32 loc) · 773 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
version: '3.8'
services:
# PostgreSQL Database (Development)
postgres:
image: postgres:15-alpine
container_name: stellar-analytics-postgres-dev
environment:
POSTGRES_DB: stellar_analytics_dev
POSTGRES_USER: stellar_user
POSTGRES_PASSWORD: stellar_password
ports:
- "5432:5432"
volumes:
- postgres_dev_data:/var/lib/postgresql/data
networks:
- stellar-dev-network
restart: unless-stopped
# Redis Cache (Development)
redis:
image: redis:7-alpine
container_name: stellar-analytics-redis-dev
ports:
- "6379:6379"
networks:
- stellar-dev-network
restart: unless-stopped
volumes:
postgres_dev_data:
driver: local
networks:
stellar-dev-network:
driver: bridge