-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcompose.override.e2e.yaml
More file actions
46 lines (41 loc) · 1.2 KB
/
compose.override.e2e.yaml
File metadata and controls
46 lines (41 loc) · 1.2 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
services:
e2e-test-runner:
build: ./e2e
environment:
- DIFFICALCY_OSU_HOST=difficalcy-osu:80
- DIFFICALCY_TAIKO_HOST=difficalcy-taiko:80
- DIFFICALCY_CATCH_HOST=difficalcy-catch:80
- DIFFICALCY_MANIA_HOST=difficalcy-mania:80
depends_on:
- difficalcy-osu
- difficalcy-taiko
- difficalcy-catch
- difficalcy-mania
beatmap-server:
image: caddy:2-alpine
volumes:
- ./e2e/beatmaps:/usr/share/caddy:ro
difficalcy-osu:
environment:
- ASPNETCORE_ENVIRONMENT=Production
- BEATMAP_DOWNLOAD_URL=http://beatmap-server:80/{beatmapId}.osu
depends_on:
- beatmap-server
difficalcy-taiko:
environment:
- ASPNETCORE_ENVIRONMENT=Production
- BEATMAP_DOWNLOAD_URL=http://beatmap-server:80/{beatmapId}.osu
depends_on:
- beatmap-server
difficalcy-catch:
environment:
- ASPNETCORE_ENVIRONMENT=Production
- BEATMAP_DOWNLOAD_URL=http://beatmap-server:80/{beatmapId}.osu
depends_on:
- beatmap-server
difficalcy-mania:
environment:
- ASPNETCORE_ENVIRONMENT=Production
- BEATMAP_DOWNLOAD_URL=http://beatmap-server:80/{beatmapId}.osu
depends_on:
- beatmap-server