-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
51 lines (45 loc) · 969 Bytes
/
docker-compose.yaml
File metadata and controls
51 lines (45 loc) · 969 Bytes
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
version: '3'
services:
nginx:
image: nginx:1.23
volumes:
- ./public/:/ci4proj/public
- ./docker/nginx/default.conf:/etc/nginx/conf.d/default.conf
ports:
- "8080:80"
phpfpm:
build:
context: ./docker/phpfpm/
dockerfile: ./Dockerfile
volumes:
- ./:/ci4proj
postgres:
image: postgres:13-alpine
ports:
- "5432:5432"
environment:
POSTGRES_DB: test
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
mssql:
image: mcr.microsoft.com/mssql/server:2019-latest
ports:
- "1433:1433"
environment:
SA_PASSWORD: 1Secure*Password1
ACCEPT_EULA: Y
MSSQL_PID: Developer
mysql:
image: mysql:5.7
ports:
- "3306:3306"
environment:
MYSQL_ROOT_PASSWORD: mysql
MYSQL_DATABASE: test
MYSQL_USER: mysql
MYSQL_PASSWORD: mysql
mailhog:
image: mailhog/mailhog
ports:
- 1025:1025
- 8025:8025