-
Notifications
You must be signed in to change notification settings - Fork 0
/
compose.yml
68 lines (68 loc) · 1.85 KB
/
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
66
67
68
version: "3"
services:
seeTrue:
container_name: SeeTrueImage
image: theonlybeardedbeast/seetrue.api:latest
restart: unless-stopped
ports:
- "9999:80"
environment:
SEETRUE_DB_CONNECTION: Host=192.168.64.2;Database=seetrue;Username=postgres;Password=postgres
SEETRUE_ALLOWED_HOSTS: http://localhost:3000,http://localhost:3001,http://192.168.64.2:9998
SEETRUE_SIGNING_KEY: Uvz9WCdELTkqaZLVYgLHdzURl6YBe38t
SEETRUE_SMTP_USER: [email protected]
SEETRUE_AUIDIENCES: http://localhost:5000
SEETRUE_VERIFICATION_TOKEN_LIFETIME: 24
SEETRUE_ISSUER: http://localhost:5000
SEETRUE_REFRESH_TOKEN_LIFETIME: 336
SEETRUE_API_KEY: SuperSecureApiKey
SEETRUE_RECOVERY_MAX_FREQUENCY: 5
SEETRUE_SMTP_HOST: 192.168.64.2
SEETRUE_VALIDATE_AUDIENCE: true
SEETRUE_SIGNUP_DISABLED: false
SEETRUE_VALIDATE_ISSUER: true
SEETRUE_TOKEN_LIFETIME: 3600
SEETRUE_INVITE_ENABLED: true
SEETRUE_SMTP_PASS: 12345678
SEETRUE_ADMIN_ROLE: admin
SEETRUE_SMTP_PORT: 1025
SEETRUE_LANGUAGES: en
SEETRUE_MAILFROM_EMAIL: [email protected]
SEETRUE_MAILFROM_NAME: "SeeTrue"
networks:
- app
depends_on:
- db
seeTrueAdmin:
image: theonlybeardedbeast/seetrue.admin:latest
restart: unless-stopped
ports:
- "9998:80"
networks:
- app
depends_on:
- db
mailhog:
image: mailhog/mailhog
networks:
- app
ports:
- "1025:1025"
- "8025:8025"
db:
container_name: SeeTrueDB
image: postgres:latest
restart: unless-stopped
ports:
- "5432:5432"
environment:
POSTGRES_DB: postgres
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_PORT: 5432
networks:
- app
networks:
app:
name: seetruenetwork
driver: bridge