-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
executable file
·54 lines (53 loc) · 1.07 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
version: '3.8'
services:
app:
build:
context: .
dockerfile: app-php8.dockerfile
ports:
- 80:80
volumes:
- ./src:/var/www/html
depends_on:
- mysql
extra_hosts:
- 'host.docker.internal:host-gateway'
mysql:
image: mariadb:10.6
restart: unless-stopped
tty: true
ports:
- 3306:3306
environment:
MYSQL_DATABASE: laravel
MYSQL_USER: laravel
MYSQL_PASSWORD: secret
MYSQL_ROOT_PASSWORD: secret
volumes:
- ./mysql:/var/lib/mysql
docker-dns:
image: hickskp/docker-dns
restart: always
volumes:
- ./dns:/etc/docker-dns/
ports:
- 53:53/udp
composer:
build:
context: .
dockerfile: composer.dockerfile
volumes:
- ./src:/var/www/html
user: "1000:1000"
working_dir: /var/www/html
artisan:
build:
context: .
dockerfile: app-php8.dockerfile
volumes:
- ./src:/var/www/html
working_dir: /var/www/html
user: "1000:1000"
depends_on:
- mysql
entrypoint: ['php', '/var/www/html/artisan']