forked from GEWIS/gewisweb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.override.yml
More file actions
63 lines (62 loc) · 1.54 KB
/
docker-compose.override.yml
File metadata and controls
63 lines (62 loc) · 1.54 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
services:
mysql:
image: mariadb:10
env_file:
- .env
volumes:
- gewisweb_mysql:/var/lib/mysql:rw
networks:
- gewisweb_network
ports:
- "3306:3306"
restart: unless-stopped
myadmin:
image: phpmyadmin/phpmyadmin:latest
env_file:
- .env
depends_on:
- mysql
networks:
- gewisweb_network
ports:
- "8080:80"
restart: unless-stopped
nginx:
build: docker/nginx
volumes:
- ./public/js:/code/public/js:ro
- ./public/css:/code/public/css:ro
ports:
- "80:9200"
- "81:9201"
- "82:9202"
web:
image: abc.docker-registry.gewis.nl/web/gewisweb/web:development
build:
dockerfile: docker/web/development/Dockerfile
context: .
depends_on:
- mysql
extra_hosts:
- "host.docker.internal:host-gateway"
volumes:
- ./public/js:/code/public/js:rw
- ./public/css:/code/public/css:rw
- ./module:/code/module
postfix:
image: mailhog/mailhog
env_file:
- .env
ports:
- "8025:8025"
glide:
build: docker/glide
volumes:
- ./public/js:/code/public/js:rw
- ./public/css:/code/public/css:rw
matomo:
build: docker/matomo
depends_on:
- mysql
volumes:
gewisweb_mysql: