-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
105 lines (98 loc) · 2.14 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
version: '3'
services:
# node service
frontend:
build:
context: .
dockerfile: Dockerfile.fe
container_name: lebaros_frontend
environment:
SERVICE_NAME: frontend
SERVICE_TAGS: dev
ports:
- "3000:3000"
volumes:
- /app/node_modules
- .:/app
# php service
backendapi:
build:
context: .
dockerfile: Dockerfile.beapi
image: digitalocean.com/php
container_name: lebaros_backendapi
restart: unless-stopped
tty: true
environment:
SERVICE_NAME: backendapi
SERVICE_TAGS: dev
# working_dir: /var/www/backend-api
volumes:
- ./:/var/www
- ./php/local.ini:/usr/local/etc/php/conf.d/local.ini
# php service
backendadmin:
build:
context: .
dockerfile: Dockerfile.beadmin
image: digitalocean.com/php
container_name: lebaros_backendadmin
restart: unless-stopped
tty: true
environment:
SERVICE_NAME: backendadmin
SERVICE_TAGS: dev
# working_dir: /var/www/backend-api
volumes:
- ./:/var/www
- ./php/local.ini:/usr/local/etc/php/conf.d/local.ini
# nginx service
webserver:
image: nginx:alpine
container_name: lebaros_webserver
restart: unless-stopped
tty: true
ports:
- "3001:3001"
- "3002:443"
- "3003:3003"
- "3004:443"
volumes:
- ./:/var/www
- ./nginx/conf.d/:/etc/nginx/conf.d/
# mysql service
mysql:
container_name: lebaros_mysql
image: mysql:5.7
ports:
- "13306:3306"
environment:
MYSQL_DATABASE: lebaros
MYSQL_ROOT_PASSWORD: root
MYSQL_USER: lebaros
MYSQL_PASSWORD: lebaros
network_mode: bridge
logging:
driver: "none"
# redis service
redis:
container_name: lebaros_redis
image: redis:4
ports:
- "16379:6379"
network_mode: bridge
logging:
driver: "none"
# tests
tests:
build:
context: .
dockerfile: Dockerfile.fe
container_name: lebaros_tests
environment:
SERVICE_NAME: tests
SERVICE_TAGS: dev
volumes:
- /app/node_modules
- .:/app
command: ["npm", "run", "test"]