-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
42 lines (40 loc) · 968 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'
services:
database:
image: mariadb
networks:
- runner
environment:
- "MARIADB_ROOT_PASSWORD=123"
- "MARIADB_DATABASE=runner"
- "MARIADB_USER=runner"
- "MARIADB_PASSWORD=runner"
volumes:
- "./target/mariadb:/var/lib/mysql"
runner:
container_name: exactauth
restart: unless-stopped
build:
context: ./
ssh:
- "default"
extra_hosts:
- "host.docker.internal:host-gateway"
networks:
- runner
depends_on:
- database
environment:
- "MYSQL_HOST=database"
- "MYSQL_USER=runner"
- "MYSQL_PASSWORD=runner"
- "MYSQL_DB=runner"
- "EXACT_CLIENT_ID=bac401ab-7d4e-4cb6-92dd-8df388553c5b"
- "EXACT_CLIENT_SECRET=cCAPV7VhtNiF"
- "REDIRECT_URI=https://mrf.local:8443/api/v1/logged-in"
- "MRAUTH_URL=http://host.docker.internal:3444"
ports:
- "8081:8080"
networks:
runner:
external: false