-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
73 lines (67 loc) · 1.83 KB
/
docker-compose.yml
File metadata and controls
73 lines (67 loc) · 1.83 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
version: '2'
services:
nginx-proxy:
image: jwilder/nginx-proxy
container_name: nginx-proxy
restart: always
ports:
- 80:80
volumes:
- /var/run/docker.sock:/tmp/docker.sock:ro
- ./configuration/nginx/default.conf:/etc/nginx/conf.d/nginx.conf
mdb:
image: mariadb
container_name: mdb
restart: always
ports:
- 3306:3306
environment:
MYSQL_ROOT_PASSWORD: root
#volumes:
#- ./storage/mariadb:/var/lib/mysql
mailhog:
image: mailhog/mailhog
container_name: mailhog
environment:
VIRTUAL_HOST: mailhog.local
VIRTUAL_PORT: 8025
restart: always
ports:
- 8025:8025
- 1025:1025
mongodb:
image: mongo:latest
container_name: mongodb
restart: always
environment:
- MONGO_DATA_DIR=/data/db
- MONGO_LOG_DIR=/dev/null
volumes:
- ./storage/mongodb:/data/db
ports:
- 27017:27017
command: mongod --smallfiles --logpath=/dev/null
portainer:
image: portainer/portainer:latest
container_name: portainer
restart: always
environment:
VIRTUAL_HOST: portainer.local
ports:
- 9000:9000
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
- ./storage/portainer_data:/data
docker-test:
container_name: docker-test
restart: always
build:
context: .
dockerfile: image/Dockerfile
environment:
VIRTUAL_HOST: docker-test.local
working_dir: /var/www
tty: true
volumes:
- ./../docker-test:/var/www
- ./configuration/docker-test.conf:/etc/apache2/sites-available/000-default.conf