forked from urnauzao/docker-php-com-nginx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
45 lines (45 loc) · 1.02 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
services:
web:
image: prod-nginx-php-fpm8.2.3
container_name: web
build:
context: .
dockerfile: ./docker/Dockerfile
args:
PHP_VERSION: '8.3-fpm-bullseye'
environment:
PHP_VERSION: '8.3-fpm-bullseye'
# volumes:
# - ./app:/var/www/app
networks:
- taishin-net
ports:
- "80:80" #http
- "443:443" #https
web-db:
container_name: web-db
image: 'mysql:8.0'
restart: always
ports:
# - '${FORWARD_DB_PORT:-3306}:3306'
- "3306:3306"
environment:
MYSQL_DATABASE: 'taishinDB'
MYSQL_USER: 'taishinUSR'
MYSQL_PASSWORD: '!!t415h1n!!'
MYSQL_ROOT_PASSWORD: '!!t415h1n!!'
volumes:
- 'taishin-mysql-volume:/var/lib/mysql'
- ./app/docker/8.3-prod/my.cnf:/etc/mysql/my.cnf
networks:
- taishin-net
healthcheck:
test: ["CMD", "mysqladmin", "ping", "-h", "localhost"]
retries: 3
timeout: 5s
networks:
taishin-net:
driver: bridge
volumes:
taishin-mysql-volume:
driver: local