-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
51 lines (51 loc) · 1009 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
39
40
41
42
43
44
45
46
47
48
49
50
51
version: '3'
services:
web:
image: phalconphp/ubuntu-16.04:php-7.2
container_name: web
volumes:
- ./.docker/conf/nginx/default.conf:/etc/nginx/conf.d/default.conf
- .:/app
ports:
- 8081:81
- 8082:82
restart: always
networks:
- app-network
db:
image: mysql:latest
container_name: db
command: --default-authentication-plugin=mysql_native_password
restart: unless-stopped
tty: true
ports:
- "3306:3306"
environment:
MYSQL_DATABASE: ${DBNAME}
MYSQL_ROOT_PASSWORD: ${DBPASS}
SERVICE_NAME: mysql
volumes:
- dbdata:/var/lib/mysql
networks:
- app-network
adminer:
image: adminer
container_name: adminer
restart: always
ports:
- 8083:8080
networks:
- app-network
redis:
image: redis
container_name: cache
expose:
- 6379
networks:
- app-network
networks:
app-network:
driver: bridge
volumes:
dbdata:
driver: local