-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathcompose.yml
More file actions
70 lines (64 loc) · 1.74 KB
/
Copy pathcompose.yml
File metadata and controls
70 lines (64 loc) · 1.74 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
services:
redis:
image: redis:8-alpine
ports:
- "6379:6379"
db:
image: postgres:18.3
environment:
POSTGRES_DB: shopmon
POSTGRES_USER: shopmon
POSTGRES_PASSWORD: shopmon
ports:
- "5432:5432"
volumes:
- db-data:/var/lib/postgresql
mailpit:
image: axllent/mailpit
ports:
- "8025:8025"
- "1025:1025"
demoshop:
image: ghcr.io/friendsofshopware/shopware-demo-environment:6.7.8
environment:
APP_URL: "http://localhost:3889"
EXTENSIONS: "frosh/tools:* frosh/shopmon:*"
SHOPMON_ACCESS_KEY: SWIAUZL4OXRKEG1RR3PMCEVNMG
SHOPMON_ACCESS_SECRET: aXhNQ3NoRHZONmxPYktHT0c2c09rNkR0UHI0elZHOFIycjBzWks
ports:
- "3889:8000"
sitespeed-service:
image: ghcr.io/shyim/sitespeed.io-api:main
ports:
- "3001:8080"
environment:
S3_SERVICE_URL: http://rustfs:9000
S3_ACCESS_KEY: rustfsadmin
S3_SECRET_KEY: rustfsadmin
S3_BUCKET_NAME: sitespeed-results
AUTH_TOKEN: secret
S3_DISABLE_PAYLOAD_SIGNING: "false"
DOCKER_NETWORK: shopmon_default
OTEL_EXPORTER_OTLP_TRACES_ENDPOINT: http://jaeger:4318/v1/traces
volumes:
- /var/run/docker.sock:/var/run/docker.sock
rustfs:
image: rustfs/rustfs:latest
ports:
- "9000:9000"
- "9001:9001"
jaeger:
image: jaegertracing/all-in-one:latest
environment:
COLLECTOR_OTLP_ENABLED: "true"
ports:
- "16686:16686"
- "4318:4318"
createbuckets:
image: minio/mc
depends_on:
- rustfs
entrypoint: >
/bin/sh -c " /usr/bin/mc alias set myminio http://rustfs:9000 rustfsadmin rustfsadmin; /usr/bin/mc mb -p myminio/sitespeed-results; /usr/bin/mc mb -p myminio/shopmon; exit 0; "
volumes:
db-data: