-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
67 lines (59 loc) · 1.37 KB
/
docker-compose.yml
File metadata and controls
67 lines (59 loc) · 1.37 KB
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
services:
php74:
build:
dockerfile: docker/Dockerfile
args:
PHP_VERSION: '7.4'
ports:
- '8074:8000'
php80:
build:
dockerfile: docker/Dockerfile
args:
PHP_VERSION: '8.0'
ports:
- '8080:8000'
php81:
build:
dockerfile: docker/Dockerfile
args:
PHP_VERSION: '8.1'
ports:
- '8081:8000'
php82:
build:
dockerfile: docker/Dockerfile
args:
PHP_VERSION: '8.2'
ports:
- '8082:8000'
php83:
build:
dockerfile: docker/Dockerfile
args:
PHP_VERSION: '8.3'
ports:
- '8083:8000'
php84:
build:
dockerfile: docker/Dockerfile
args:
PHP_VERSION: '8.4'
ports:
- '8084:8000'
mysql:
image: docker.io/mysql:8.0
ports:
- "33066:3306"
environment:
- MYSQL_ROOT_PASSWORD=pwd
- MYSQL_DATABASE=testrabbit
volumes:
- mysql-data:/var/lib/mysql
memcache:
image: docker.io/memcached:1.6-alpine
ports:
- "11211:11211"
command: memcached -m 64 -I 1m
volumes:
mysql-data: