forked from collinbarrett/FilterLists
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.data.tests.yml
More file actions
39 lines (35 loc) · 874 Bytes
/
docker-compose.data.tests.yml
File metadata and controls
39 lines (35 loc) · 874 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
version: "3.7"
services:
api:
image: collinbarrett2/filterlists.api:test-data
build:
context: .
dockerfile: server/src/FilterLists.Api/Dockerfile
target: test-data
networks:
- test-data
volumes:
- test-data-results:/app/tests/FilterLists.Data.Tests/TestResults
depends_on:
- mariadb
mariadb:
# on update, also update ServerVersion in FilterLists.Data.Constants.ServerVersion
image: mariadb:10.4.12
networks:
- test-data
environment:
- MYSQL_ROOT_PASSWORD=filterlists
- MYSQL_DATABASE=filterlists
- MYSQL_USER=filterlists
- MYSQL_PASSWORD=filterlists
command:
[
"mysqld",
"--character-set-server=utf8mb4",
"--collation-server=utf8mb4_unicode_520_ci",
]
networks:
test-data:
volumes:
test-data-results:
external: true