-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
39 lines (38 loc) · 956 Bytes
/
docker-compose.yml
File metadata and controls
39 lines (38 loc) · 956 Bytes
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
version: "3.4"
services:
mongo:
image: mongo
restart: always
volumes:
- './data:/data/db'
# ports:
# - 22222:27017
nginx:
image: nginx
environment:
PROXY_IP: http://signumlbri:3000/
ports:
- 800:80
- 4430:443
volumes:
- ./default.conf:/etc/nginx/templates/default.conf.template
- ./certs/:/etc/nginx/ssl/
# - /etc/letsencrypt/live/targi.zsel.opole.pl/fullchain.pem:/etc/nginx/ssl/cert.crt
# - /etc/letsencrypt/live/targi.zsel.opole.pl/privkey.pem:/etc/nginx/ssl/cert.key
signumlbri:
image: signumlbri
build:
context: .
dockerfile: ./Dockerfile
environment:
SESSION_SECRET: "A"
MAIL_HOST:
MAIL_USER:
MAIL_SHOWMAIL:
MAIL_PASSWORD:
# NODE_ENV: production
NODE_ENV: developement
MONGODB_URI: mongodb://mongo:27017/
MONGODB_URI_LOCAL: mongodb://mongo:27017/
# ports:
# - 3000:3000