forked from solid-connection/solid-connect-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
46 lines (42 loc) · 920 Bytes
/
docker-compose.dev.yml
File metadata and controls
46 lines (42 loc) · 920 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
42
43
44
45
46
version: '3.8'
services:
redis:
image: redis:latest
container_name: redis
ports:
- "6379:6379"
network_mode: host
redis-exporter:
image: oliver006/redis_exporter
container_name: redis-exporter
ports:
- "9121:9121"
environment:
REDIS_ADDR: "localhost:6379"
depends_on:
- redis
network_mode: host
solid-connection-dev:
build:
context: .
dockerfile: Dockerfile
container_name: solid-connection-dev
ports:
- "8080:8080"
environment:
- SPRING_PROFILES_ACTIVE=dev
volumes:
- ./logs:/var/log/spring
depends_on:
- redis
network_mode: host
alloy:
image: grafana/alloy:latest
container_name: alloy
ports:
- "12345:12345"
volumes:
- ./logs:/var/log/spring
- ./docs/infra-config/config.alloy:/etc/alloy/config.alloy:ro
environment:
- ALLOY_ENV=dev