forked from wise-team/engrave
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.development.yml
More file actions
65 lines (58 loc) · 1.48 KB
/
docker-compose.development.yml
File metadata and controls
65 lines (58 loc) · 1.48 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
version: "3.2"
services:
statistics:
image: bgornicki/engrave-statistics
depends_on:
- mongo
environment:
- WAIT_HOSTS=mongo:27017
nginx:
image: bgornicki/nginx
ports:
- 80:80
- 443:443
volumes:
- nginx_conf:/etc/nginx/conf.d
- nginx_certs:/etc/letsencrypt
depends_on:
- engrave
engrave:
image: bgornicki/engrave
ports:
- 127.0.0.1:9229:9229
environment:
- STEEMCONNECT_REDIRECT_URI=http://127.0.0.1/authorize/
- PAYMENT_REDIRECT_URI=http://127.0.0.1/dashboard/configure/
- DOMAIN=engrave.website
- SSL_EMAIL=engrave@niepodam.pl
- SSL_CERTIFICATES_DIR=/etc/letsencrypt
- BLOGS_DOMAINS=["engrave.website", "engrave.site"]
- BLOGS_CATEGORIES=["Other", "Financial and economy", "Lifestyle", "Food", "Sport", "Travel", "Health and beauty", "Hobby", "Music", "Journalism", "Photography", "Technology"]
- WAIT_HOSTS=mongo:27017
- SERVER_IP=139.162.185.235
- NAMECOM_API=api.dev.name.com
- DOMAIN_PRICE_SBD=10
- DOMAIN_PRICE_STEEM=20
volumes:
- nginx_conf:/etc/nginx/conf.d
- nginx_certs:/etc/letsencrypt
depends_on:
- mongo
secrets:
- NAMECOM_TOKEN
- NAMECOM_USERNAME
mongo:
image: mongo
volumes:
- db-data:/data/db
ports:
- "27017:27017"
volumes:
db-data:
nginx_certs:
nginx_conf:
secrets:
NAMECOM_TOKEN:
external: true
NAMECOM_USERNAME:
external: true