-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
58 lines (54 loc) · 1.15 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
version: "3.5"
services:
scraperel.db:
restart: always
image: microsoft/mssql-server-linux:2017-latest
container_name: sql2017
hostname: 'sql2017'
ports:
- 14330:1433
- 14340:1434
networks:
- scraperel-network
environment:
- 'ACCEPT_EULA=Y'
- 'SA_PASSWORD=12wsW99RWQERDVax'
volumes:
- ./sql2017:/var/opt/mssql
scraperel.api:
restart: always
image: scraperel
build:
context: .
dockerfile: ./Dockerfile
networks:
- scraperel-network
ports:
- 8900:8080
environment:
- COMPlus_EnableDiagnostics=0
- ASPNETCORE_ENVIRONMENT=Docker
depends_on:
- scraperel.db
links:
- scraperel.db:db
volumes:
- ./scraperel.api/log:/src/log
scraperel.seq:
restart: always
container_name: seq
hostname: 'seq'
image: datalust/seq:latest
ports:
- 8000:80
- 5341:5341
networks:
- scraperel-network
volumes:
- ./seq/data:/data
environment:
ACCEPT_EULA: Y
networks:
scraperel-network:
name: scraperel-network
external: true