-
Notifications
You must be signed in to change notification settings - Fork 4
/
docker-compose.yml
42 lines (38 loc) · 991 Bytes
/
docker-compose.yml
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
version: "3.7"
services:
web:
image: matcher-web
build:
context: .
dockerfile: Dockerfile.web
ports:
- "8080:80"
environment:
- "Spotity__ClientId="
- "Spotity__ClientSecret="
- "ConnectionString=Server=db,1433;Database=BeatSaverMatcher;User Id=sa;Password=!1Start1!;"
- "RedisConnection=redis"
restart: unless-stopped
service:
image: matcher-service
build:
context: .
dockerfile: Dockerfile.service
environment:
- "ConnectionString=Server=db,1433;Database=BeatSaverMatcher;User Id=sa;Password=!1Start1!;"
restart: unless-stopped
db:
image: benjaminabt/mssql-fts:2019-ubuntu-1804
ports:
- "127.0.0.1:1433:1433"
environment:
- "ACCEPT_EULA=Y"
- "SA_PASSWORD=!1Start1!"
volumes:
- "db:/var/opt/mssql"
restart: unless-stopped
redis:
image: redis:6.0.5
restart: unless-stopped
volumes:
db: