-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
65 lines (60 loc) · 1.27 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
version: '3'
services:
#PHP Service
app:
build:
context: .
dockerfile: Dockerfile
image: digitalocean.com/php
container_name: app
restart: unless-stopped
tty: true
volumes:
- ./:/var/www
- ./php/local.ini:/usr/local/etc/php/conf.d/local.ini
environment:
SERVICE_NAME: app
SERVICE_TAGS: dev
working_dir: /var/www
networks:
- app-network
#Nginx Service
webserver:
image: nginx:alpine
container_name: webserver
restart: unless-stopped
tty: true
volumes:
- ./:/var/www
- ./nginx/conf.d/:/etc/nginx/conf.d/
ports:
- "81:80"
networks:
- app-network
#Mongo Service
db:
image: mongo
restart: unless-stopped
container_name: db
tty: true
ports:
- "27017-27019:27017-27019"
volumes:
- ./mongo/init.js:/docker-entrypoint-initdb.d/init.js:ro
- ./mongo/data:/data/db
environment:
# TODO: get these from env
MONGO_INITDB_ROOT_USERNAME: testus
MONGO_INITDB_DATABASE: laravel
MONGO_INITDB_ROOT_PASSWORD: testpass
networks:
- app-network
redis:
image: "redis:alpine"
container_name: redis
networks:
- app-network
#Docker Networks
networks:
app-network:
driver: bridge