-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.devall.yaml
47 lines (47 loc) · 1.09 KB
/
docker-compose.devall.yaml
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
version: "3"
services:
mongodb:
extends:
file: docker-compose.dev.yaml
service: mongodb
mongo-express:
extends:
file: docker-compose.dev.yaml
service: mongo-express
vixun:
image: vixun:1.0.0
container_name: vixun
ports:
- 3000:3000
environment:
MONGODB: VIXUNDB
PORT: 3000
secrets:
- mongo_url
- cloudinary_api_key
- cloudinary_api_secret
- cloudinary_cloud_name
- session_name
- session_secret
- spotify_client_id
- spotify_client_secret
volumes:
mongodb-data:
driver: local
secrets:
mongo_url:
file: ./secrets/mongo_url.txt
cloudinary_api_key:
file: ./secrets/cloudinary_api_key.txt
cloudinary_api_secret:
file: ./secrets/cloudinary_api_secret.txt
cloudinary_cloud_name:
file: ./secrets/cloudinary_cloud_name.txt
session_name:
file: ./secrets/session_name.txt
session_secret:
file: ./secrets/session_secret.txt
spotify_client_id:
file: ./secrets/spotify_client_id.txt
spotify_client_secret:
file: ./secrets/spotify_client_secret.txt