-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
40 lines (36 loc) · 1010 Bytes
/
docker-compose.yml
File metadata and controls
40 lines (36 loc) · 1010 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
40
---
# nginx:
# image: library/nginx:latest
# ports:
# - "80:80"
# volumes:
# - clients/httpd.conf:/etc/nginx/conf.d/default.conf
# - clients/.tmp/serve:/usr/share/nginx/html
# - clients/bower_components:/usr/share/nginx/html/bower_components
mysql:
image: lucasgmartins/mysql
ports:
- "3307:3306"
environment:
MYSQL_ROOT_PASSWORD : ZmxpY2UNCg==
MYSQL_CORE_DATABASE : flice-core
MYSQL_SECURITY_DATABASE : flice-account
# account:
# image: lucasgmartins/java8
# ports:
# - "8081:8080"
# links:
# - mysql
# volumes:
# - projects/account/server/target/flice-account.jar:/app/flice-account.jar
# command: java -jar -Dspring.profiles.active=DEV /app/flice-account.jar
# core:
# image: lucasgmartins/java8
# ports:
# - "8080:8080"
# links:
# - mysql
# - account
# volumes:
# - projects/core/server/target/flice-core.jar:/app/flice-core.jar
# command: java -jar -Dspring.profiles.active=DEV /app/flice-core.jar