-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
134 lines (133 loc) · 3.89 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
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
126
127
128
129
130
131
132
133
134
services:
laravel_app:
build:
context: .
dockerfile: Dockerfile
args:
WWWGROUP: 1000
image: 'app-8.3/app'
# deploy:
# resources:
# limits:
# cpus: "1"
# memory: 2048M
extra_hosts:
- 'host.docker.internal:host-gateway'
ports:
- '${APP_PORT:-8000}:80'
# - '${VITE_PORT:-5173}:${VITE_PORT:-5173}'
environment:
WWWUSER: 1000
LARAVEL_APP: 1
XDEBUG_MODE: '${APP_XDEBUG_MODE:-off}'
XDEBUG_CONFIG: '${APP_XDEBUG_CONFIG:-client_host=host.docker.internal}'
IGNITION_LOCAL_SITES_PATH: '${PWD}'
volumes:
- '.:/var/www/html'
networks:
- laravel_app_net
# depends_on:
# - pgsql
# - redis
# - meilisearch
# pgsql:
# image: 'postgres:17'
# # deploy:
# # resources:
# # limits:
# # cpus: "1"
# # memory: 2048M
# ports:
# - '${FORWARD_DB_PORT:-5432}:5432'
# environment:
# PGPASSWORD: '${DB_PASSWORD:-secret}'
# POSTGRES_DB: '${DB_DATABASE}'
# POSTGRES_USER: '${DB_USERNAME}'
# POSTGRES_PASSWORD: '${DB_PASSWORD:-secret}'
# volumes:
# - 'app-pgsql:/var/lib/postgresql/data'
# - './vendor/laravel/app/database/pgsql/create-testing-database.sql:/docker-entrypoint-initdb.d/10-create-testing-database.sql'
# networks:
# - laravel_app_net
# healthcheck:
# test:
# - CMD
# - pg_isready
# - '-q'
# - '-d'
# - '${DB_DATABASE}'
# - '-U'
# - '${DB_USERNAME}'
# retries: 3
# timeout: 5s
# redis:
# image: 'redis:alpine'
# # deploy:
# # resources:
# # limits:
# # cpus: "1"
# # memory: 2048M
# ports:
# - '${FORWARD_REDIS_PORT:-6379}:6379'
# volumes:
# - 'app-redis:/data'
# networks:
# - laravel_app_net
# healthcheck:
# test:
# - CMD
# - redis-cli
# - ping
# retries: 3
# timeout: 5s
# meilisearch:
# image: 'getmeili/meilisearch:latest'
# # deploy:
# # resources:
# # limits:
# # cpus: "1"
# # memory: 2048M
# ports:
# - '${FORWARD_MEILISEARCH_PORT:-7700}:7700'
# environment:
# MEILI_NO_ANALYTICS: '${MEILISEARCH_NO_ANALYTICS:-false}'
# volumes:
# - 'app-meilisearch:/meili_data'
# networks:
# - laravel_app_net
# healthcheck:
# test:
# - CMD
# - wget
# - '--no-verbose'
# - '--spider'
# - 'http://127.0.0.1:7700/health'
# retries: 3
# timeout: 5s
# meilisearch_ui:
# container_name: meilisearch_ui
# image: riccoxie/meilisearch-ui:latest
# # deploy:
# # resources:
# # limits:
# # cpus: '0.1'
# # memory: '128M'
# restart: unless-stopped
# ports:
# - "8080:24900"
# environment:
# MEILISEARCH_URL: "http://meilisearch:7700"
# networks:
# - laravel_app_net
# depends_on:
# - meilisearch
networks:
laravel_app_net:
driver: bridge
volumes:
app-pgsql:
driver: local
app-redis:
driver: local
app-meilisearch:
driver: local