-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathdocker-compose.yml
45 lines (41 loc) · 1.13 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
version: '3'
services:
db:
image: mysql:8.0.23
volumes:
- db_data:/var/lib/mysql
- ${PWD}/schema.sql:/docker-entrypoint-initdb.d/001-schema.sql
- ${PWD}/docker/test.sql:/docker-entrypoint-initdb.d/002-test.sql
restart: always
environment:
MYSQL_RANDOM_ROOT_PASSWORD: '1'
MYSQL_USER: 'php_main'
MYSQL_PASSWORD: 'test_51ebe2993a2568c6fbb1cfb4c4277991'
MYSQL_DATABASE: 'php_main'
web:
depends_on:
- db
image: php-web-main:latest
build:
context: ./docker
restart: always
command: php -S 0.0.0.0:8000 -d include_path="/app/include/" -derror_reporting="E_ALL&~E_DEPRECATED" -t /app/public /app/docker/controller.php
ports:
- "127.0.0.1:8000:8000"
volumes:
- ${PWD}:/app
environment:
DATABASE_HOST: 'db'
DATABASE_USER: 'php_main'
DATABASE_PASSWORD: 'test_51ebe2993a2568c6fbb1cfb4c4277991'
DATABASE_NAME: 'php_main'
static:
image: caddy:2
restart: always
command: caddy file-server --listen :8002 --root /app
ports:
- "127.0.0.1:8002:8002"
volumes:
- ${PWD}/shared:/app
volumes:
db_data: {}