-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathdocker-compose.yml
89 lines (83 loc) · 3.09 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
services:
####################################################################################################
# PHP
####################################################################################################
php:
build: ./docker/php
# user: 'www-data:www-data'
ports:
- "5173:5173" # Vite development server for hot-reload
volumes:
- .:/var/www:cached
container_name: crowdsourcing_platform_server
networks:
- docker_crowdsourcing_platform_net
extra_hosts:
# we need this to connect to the host machine from the container,
# so that we can access the Internet from the container
- "host.docker.internal:host-gateway"
####################################################################################################
# Web Server (Nginx)
####################################################################################################
nginx:
image: nginx
ports:
- "89:80" # Laravel app will be available at http://localhost:89
volumes:
- .:/var/www
- ./docker/nginx/default.conf:/etc/nginx/conf.d/default.conf
- ./docker/nginx/nginx.conf:/etc/nginx/nginx.conf
networks:
- docker_crowdsourcing_platform_net
depends_on:
- php
####################################################################################################
# DATABASE (MySQL)
####################################################################################################
db:
build: ./docker/db
container_name: crowdsourcing_platform_db
environment:
- MYSQL_ROOT_PASSWORD=root
- MYSQL_DATABASE=${DB_DATABASE}
- MYSQL_USER=${DB_USERNAME}
- MYSQL_PASSWORD=${DB_PASSWORD}
ports:
- "3316:3306"
volumes:
- ./docker/db/data:/var/lib/mysql
- ./docker/logs:/var/log/mysql
- ./docker/db/my.cnf:/etc/mysql/conf.d/my.cnf
- ./docker/db/sql:/docker-entrypoint-initdb.d
networks:
- docker_crowdsourcing_platform_net
####################################################################################################
# Redis
####################################################################################################
redis:
image: redis:latest
command: redis-server --appendonly yes
volumes:
- ./docker/redis/data:/data
ports:
- "6389:6379"
networks:
- docker_crowdsourcing_platform_net
####################################################################################################
# SMTP Server (Mailhog) - for testing emails
####################################################################################################
mailhog:
platform: linux/x86_64
image: mailhog/mailhog
container_name: smtp_mailhog_server
logging:
driver: 'none' # disable saving logs to the disk
ports:
- "1025:1025" # smtp server
- "8100:8025" # web interface
networks:
- docker_crowdsourcing_platform_net # connect to the same network as the app
networks:
docker_crowdsourcing_platform_net:
external: false
name: docker_crowdsourcing_platform_net