-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
125 lines (125 loc) · 3.55 KB
/
Copy pathdocker-compose.yml
File metadata and controls
125 lines (125 loc) · 3.55 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
services:
laravel.test:
build:
context: .
dockerfile: docker/php/Dockerfile
image: gaeld-sail/app
extra_hosts:
- 'host.docker.internal:host-gateway'
ports:
- '127.0.0.1:${APP_PORT:-8080}:80'
environment:
LARAVEL_SAIL: 1
volumes:
- '.:/var/www/html'
entrypoint: ["/var/www/html/docker/php/entrypoint.sh"]
networks:
- sail
depends_on:
- pgsql
- redis
- mailpit
- meilisearch
command: 'php artisan serve --host=0.0.0.0 --port=80'
healthcheck:
test: ["CMD", "curl", "-sf", "http://localhost:80/up"]
interval: 5s
timeout: 3s
retries: 30
start_period: 10s
pgsql:
image: 'postgres:16-alpine'
ports:
- '127.0.0.1:${FORWARD_DB_PORT:-5432}:5432'
environment:
PGPASSWORD: '${DB_PASSWORD:-secret}'
POSTGRES_DB: '${DB_DATABASE}'
POSTGRES_USER: '${DB_USERNAME}'
POSTGRES_PASSWORD: '${DB_PASSWORD:-secret}'
volumes:
- 'sail-pgsql:/var/lib/postgresql/data'
- './docker/pgsql/create-testing-database.sql:/docker-entrypoint-initdb.d/10-create-testing-database.sql'
networks:
- sail
healthcheck:
test:
- CMD
- pg_isready
- '-q'
- '-d'
- '${DB_DATABASE}'
- '-U'
- '${DB_USERNAME}'
retries: 3
timeout: 5s
redis:
image: 'redis:7-alpine'
ports:
- '127.0.0.1:${FORWARD_REDIS_PORT:-6379}:6379'
volumes:
- 'sail-redis:/data'
networks:
- sail
healthcheck:
test:
- CMD
- redis-cli
- ping
retries: 3
timeout: 5s
mailpit:
image: 'axllent/mailpit:latest'
ports:
- '127.0.0.1:${FORWARD_MAILPIT_PORT:-1025}:1025'
- '127.0.0.1:${FORWARD_MAILPIT_DASHBOARD_PORT:-8025}:8025'
networks:
- sail
meilisearch:
image: 'getmeili/meilisearch:latest'
ports:
- '127.0.0.1:${FORWARD_MEILISEARCH_PORT:-7700}:7700'
environment:
MEILI_NO_ANALYTICS: '${MEILISEARCH_NO_ANALYTICS:-false}'
volumes:
- 'sail-meilisearch:/meili_data'
networks:
- sail
healthcheck:
test:
- CMD
- wget
- '--no-verbose'
- '--spider'
- 'http://127.0.0.1:7700/health'
retries: 3
timeout: 5s
worker:
build:
context: .
dockerfile: docker/php/Dockerfile
image: gaeld-sail/app
environment:
LARAVEL_SAIL: 1
volumes:
- '.:/var/www/html'
entrypoint: ["/var/www/html/docker/php/entrypoint.sh"]
networks:
- sail
depends_on:
laravel.test:
condition: service_healthy
redis:
condition: service_healthy
command: 'php artisan queue:work redis --sleep=3 --tries=3 --max-time=3600 --queue=default'
healthcheck:
disable: true
networks:
sail:
driver: bridge
volumes:
sail-pgsql:
driver: local
sail-redis:
driver: local
sail-meilisearch:
driver: local