-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
58 lines (55 loc) · 1.08 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
version: "3.7"
services:
app:
build:
args:
user: thrivr
uid: 1000
context: ./
dockerfile: Dockerfile
image: thrivr
container_name: thrivr-app
restart: unless-stopped
working_dir: /var/www/
volumes:
- ./:/var/www
networks:
- thrivr
db:
image: mysql:5.7.16
container_name: thrivr-db
restart: unless-stopped
ports:
- 3307:3306
environment:
MYSQL_DATABASE: ${DB_DATABASE}
MYSQL_ROOT_PASSWORD: ${DB_PASSWORD}
MYSQL_PASSWORD: ${DB_PASSWORD}
SERVICE_TAGS: dev
SERVICE_NAME: mysql
volumes:
- ../mysql_persist:/var/lib/mysql
networks:
- thrivr
nginx:
image: nginx:alpine
container_name: thrivr-nginx
restart: unless-stopped
ports:
- 8002:80
volumes:
- ./:/var/www
- ./docker-compose/nginx:/etc/nginx/conf.d/
networks:
- thrivr
redis:
image: redis:6.2
container_name: redis
restart: unless-stopped
ports:
- 6380:6379
networks:
- thrivr
networks:
thrivr:
driver: bridge