-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
docker-compose.yml
71 lines (70 loc) · 1.6 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.8'
services:
php: &default-php
tty: true
build: &default-php-build
context: .
dockerfile: Dockerfile
args:
version: cli
php-8.1:
<<: *default-php
build:
<<: *default-php-build
args:
version: 8.1-cli
php-8.2:
<<: *default-php
build:
<<: *default-php-build
args:
version: 8.2-cli
php-8.3:
<<: *default-php
build:
<<: *default-php-build
args:
version: 8.3-cli
couchbase:
build:
context: .
dockerfile: docker/Dockerfile-Couchbase
healthcheck:
test: ["CMD", "curl", "-f", "http://Administrator:password@localhost:8091/pools/default/buckets/default"]
interval: 1s
timeout: 3s
retries: 60
memcached:
image: memcached
# not sure how to properly healthcheck
mysql:
image: mysql
command: ['--character-set-server=utf8mb4', '--collation-server=utf8mb4_unicode_ci']
environment:
- MYSQL_ROOT_PASSWORD=pass
- MYSQL_USER=user
- MYSQL_PASSWORD=pass
- MYSQL_DATABASE=cache
healthcheck:
test: ["CMD", "mysqladmin", "ping", "-hmysql", "-P3306", "-uuser", "-ppass"]
interval: 3s
timeout: 3s
retries: 30
postgresql:
image: postgres
environment:
- POSTGRES_USER=user
- POSTGRES_PASSWORD=pass
- POSTGRES_DB=cache
healthcheck:
test: ["CMD", "pg_isready", "-U", "user"]
interval: 3s
timeout: 3s
retries: 30
redis:
image: redis
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 3s
timeout: 3s
retries: 30