-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
42 lines (38 loc) · 919 Bytes
/
docker-compose.yaml
File metadata and controls
42 lines (38 loc) · 919 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
services:
postgres:
image: postgres:17-alpine
restart: always
ports:
- "5432:5432"
environment:
POSTGRES_PASSWORD: 123123
PGDATA: /var/lib/postgresql/data
volumes:
- $PWD/containers/pgdata:/var/lib/postgresql/data
redis:
image: redis:7-alpine
restart: always
ports:
- "6379:6379"
rustfs:
image: rustfs/rustfs:alpha
restart: always
ports:
- "9000:9000"
volumes:
- $PWD/containers/rustfs:/data
flipt:
image: docker.flipt.io/flipt/flipt:v2
restart: always
ports:
- "8081:8080"
volumes:
- $PWD/containers/flipt:/var/opt/flipt
- $PWD/containers/flipt/config.yaml:/etc/flipt/config.yaml
command: ./flipt server --config /etc/flipt/config.yaml
jaeger:
image: cr.jaegertracing.io/jaegertracing/jaeger:2.10.0
restart: always
ports:
- "16686:16686"
- "4317:4317"