-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
72 lines (65 loc) · 1.34 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
version: '3.1'
services:
#PHP Service
app:
build:
context: .
dockerfile: docker/Dockerfile
container_name: vue-starter
restart: always
tty: true
environment:
SERVICE_NAME: vue-starter
SERVICE_TAGS: dev
working_dir: /var/www
volumes:
- ./:/var/www
- ./docker/php/local.ini:/usr/local/etc/php/conf.d/local.ini
networks:
- app-network
#Nginx Service
webserver:
image: nginx:alpine
container_name: vue-starter-webserver
restart: always
tty: true
ports:
- "8008:80"
# - "4431:443"
volumes:
- ./:/var/www
- ./docker/nginx/conf.d/:/etc/nginx/conf.d/
networks:
- app-network
#MySQL Service
db:
image: mysql:8.0.17
container_name: vue-starter-db
command: --default-authentication-plugin=mysql_native_password
restart: always
tty: true
ports:
- "3307:3306"
environment:
MYSQL_DATABASE: laravel
MYSQL_ROOT_PASSWORD: 123456
SERVICE_TAGS: dev
SERVICE_NAME: mysql
volumes:
- dbdata:/var/lib/mysql
networks:
- app-network
#adminer for db access
adminer:
image: adminer:latest
restart: unless-stopped
ports:
- 8080:8080
#Docker Networks
networks:
app-network:
driver: bridge
#Volumes
volumes:
dbdata:
driver: local