-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdocker-compose.yml
38 lines (36 loc) · 990 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
version: '3.0'
services:
core:
build:
context: .
image: oauth-api
env_file: environments/.development.docker
environment:
PORT: 3000
labels:
- 'traefik.enable=true'
- 'traefik.backend=api'
- 'traefik.port=3000'
- 'traefik.frontend.entryPoints=http'
- 'traefik.frontend.rule=PathPrefix:/'
depends_on:
- db
traefik:
image: traefik
command: --web --docker --docker.domain=docker.localhost --logLevel=INFO --docker.exposedbydefault=false
ports:
- '3000:80'
- '3001:8080'
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /dev/null:/traefik.toml
db:
image: mysql
command: --default-authentication-plugin=mysql_native_password
ports:
- 3306:3306
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: oauth_server_development
MYSQL_USER: oauth_server
MYSQL_PASSWORD: oauthserverpassword