-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
103 lines (103 loc) · 2.64 KB
/
docker-compose.yml
File metadata and controls
103 lines (103 loc) · 2.64 KB
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
services:
mariadb:
build:
context: "."
dockerfile: "docker/mariadb.Dockerfile"
network: host
ports:
- "3360:3306"
networks:
- "default"
environment:
MYSQL_ROOT_PASSWORD: "root"
MYSQL_DATABASE: "wri_restoration_marketplace_api"
MYSQL_USER: "wri"
MYSQL_PASSWORD: "wri"
php:
depends_on:
- "mariadb"
- "mailcatcher"
- "minio"
- "motocker"
- "redis"
build:
context: "."
dockerfile: "docker/php.Dockerfile"
network: host
ports:
- "8080:80"
networks:
- "default"
volumes:
- ".:/var/www/html"
extra_hosts: # <--- this is required
- "host.docker.internal:host-gateway" # <--- this is required
composer:
image: "composer:2.5.1"
volumes:
- ".:/app"
- "~/.composer:/tmp"
command: "composer about"
networks:
- "default"
mailcatcher:
image: "chatwork/mailcatcher"
networks:
- "default"
ports:
- "1025:1025"
- "1080:1080"
minio:
image: "minio/minio"
command: server /data
ports:
- "9000:9000"
environment:
MINIO_ROOT_USER: "AKIABUVWH1HUD7YQZQAR"
MINIO_ROOT_PASSWORD: "PVMlDMep3/jLSz9GxPV3mTvH4JZynkf2BFeTu+i8"
volumes:
- ./data:/data
networks:
- "default"
motocker:
image: "picadoh/motocker"
networks:
- "default"
ports:
- "9911:9911"
environment:
MOTO_SERVICE: "sns"
MOTO_HOST: "0.0.0.0"
MOTO_PORT: "9911"
elastictranscoder:
image: "3sidedcube/elasticphanscoder"
networks:
- "default"
ports:
- "2323:2323"
redis:
image: "redis:7.2-bookworm"
networks:
- "default"
ports:
- "6379:6379"
environment:
REDIS_PASSWORD: "test_redis"
geoserver:
build:
context: "."
dockerfile: "docker/geoserver.Dockerfile"
networks:
- "default"
ports:
- "8081:8080"
environment:
INSTALL_EXTENSIONS: true
STABLE_EXTENSIONS: "mysql,vectortiles"
SKIP_DEMO_DATA: "true"
volumes:
- ./docker/geoserver/geoserver_data:/opt/geoserver_data
depends_on:
- "mariadb"
networks:
default: