-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdocker-compose.yml
134 lines (124 loc) · 2.56 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
networks:
appnet:
services:
nginx:
depends_on:
- php
build:
context: ./docker/nginx
dockerfile: nginx.dockerfile
ports:
- ${APP_PORT:-80}:80
volumes:
- ./src:/var/www/html:delegated
networks:
- appnet
php:
restart: unless-stopped
build:
context: ./docker/php
dockerfile: php.dockerfile
args:
- UID=${UID:-1000}
- GID=${GID:-1000}
ports:
- "9000:9000"
volumes:
- ./src:/var/www/html:delegated
networks:
- appnet
mysql:
image: mariadb:lts
restart: unless-stopped
ports:
- ${DB_PORT:-3306}:3306
volumes:
- ./docker/data/mysql:/var/lib/mysql
networks:
- appnet
environment:
MARIADB_ALLOW_EMPTY_ROOT_PASSWORD: 1
MARIADB_DATABASE: ${DB_DATABASE}
redis:
image: redis:alpine
restart: unless-stopped
ports:
- "6379:6379"
networks:
- appnet
composer:
depends_on:
- php
build:
context: ./docker/php
dockerfile: php.dockerfile
args:
- UID=${UID:-1000}
- GID=${GID:-1000}
entrypoint: ["composer"]
volumes:
- ./src:/var/www/html
networks:
- appnet
artisan:
depends_on:
- mysql
build:
context: ./docker/php
dockerfile: php.dockerfile
args:
- UID=${UID:-1000}
- GID=${GID:-1000}
entrypoint: ["php", "/var/www/html/artisan"]
volumes:
- ./src:/var/www/html:delegated
networks:
- appnet
phpmyadmin:
env_file:
- ./src/.env
depends_on:
- mysql
image: phpmyadmin
restart: always
ports:
- ${DB_ADMIN_PORT:-8000}:80
networks:
- appnet
environment:
MYSQL_ROOT_PASSWORD: ""
MYSQL_USER: ${DB_USERNAME}
MYSQL_PASSWORD: ${DB_PASSWORD}
PMA_HOST: mysql
node:
image: node:alpine3.19
working_dir: "/usr/app"
volumes:
- ./src:/usr/app
networks:
- appnet
vite:
image: node:alpine3.19
working_dir: "/usr/app"
entrypoint: ["npm", "run", "dev"]
volumes:
- ./src:/usr/app
ports:
- "${NODE_PORT:-5173}:5173"
networks:
- appnet
mailpit:
container_name: "mailpit"
image: axllent/mailpit:v1.16
restart: unless-stopped
ports:
- ${MAILPIT_WEBUI:-8025}:8025
- ${MAILPIT_SMTP:-1025}:1025
volumes:
- ./docker/data/mailpit:/data
networks:
- appnet
environment:
MP_DATABASE: /data/mailpit.db
MP_SMTP_AUTH_ALLOW_INSECURE: true
MP_MAX_MESSAGES: ${MAILPIT_MESSAGES:-100}