blob: a1c8ec788bcea2116a86da08c000d59b707fea64 (
plain) (
blame)
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
|
version: "3.9"
services:
blog:
image: blog
build:
context: ./
networks:
- blognet
- dbnet
restart: unless-stopped
ports:
- "9000:9000"
volumes:
- /etc/letsencrypt/live/blog.terminaldweller.com-0002/fullchain.pem:/etc/letsencrypt/live/blog.terminaldweller.com/fullchain.pem:ro
- /etc/letsencrypt/live/blog.terminaldweller.com-0002/privkey.pem:/etc/letsencrypt/live/blog.terminaldweller.com/privkey.pem:ro
cap_drop:
- ALL
environment:
- SERVER_DEPLOYMENT_TYPE=deployment
- SERVER_LISTEN_PORT=9000
depends_on:
- mongo
secrets:
- mongo_user
- mongo_pass
mongo:
image: mongo:7
networks:
- dbnet
restart: on-failure
ports:
- "127.0.0.1:27117:27017"
- "127.0.0.1:27118:27018"
- "127.0.0.1:27119:27019"
volumes:
- blog-data:/data/db
environment:
- MONGO_INITDB_ROOT_USERNAME_FILE=/run/secrets/mongo_user
- MONGO_INITDB_ROOT_PASSWORD_FILE=/run/secrets/mongo_pass
secrets:
- mongo_user
- mongo_pass
networks:
blognet:
dbnet:
volumes:
blog-data:
secrets:
mongo_user:
file: ./mongo_secrets/mongo_user
mongo_pass:
file: ./mongo_secrets/mongo_pass
|