forked from DemocraciaEnRed/consulta-publica
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.example.dev.yaml
73 lines (71 loc) · 2.64 KB
/
docker-compose.example.dev.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
version: '3'
services:
app:
# build: .
# command: ["./node_modules/.bin/gulp", "bws"]
image: ghcr.io/democraciaenred/consulta-publica:5.0.0-rc1
environment:
- DEBUG=consultapublica:api
- NODE_ENV=development
- HOST=localhost
- PORT=3000
# Configuraciones necesarias - No tocar si no se sabe lo que se hace
- AVAILABLE_LOCALES=es,en
- LOCALE=es
- ENFORCE_LOCALE=true
- MODERATOR_ENABLED=true
- MULTI_FORUM=true
- RESTRICT_FORUM_CREATION=true
- WARN_HTTP=false
- CHECK_NODE_VERSION=false
# Requerido: Configurar mongo database
- MONGO_URL=mongodb://mongo/mi-consultapublica
# Requerido: Genere un token para JWT
- JWT_SECRET=SOME_TOKEN
# Importante: Defina el "Staff" de administradores para que en su registro el sistema le de privilegios de admin
# Para varios admins:
# Para un solo admin:
# Configuracion hash signup y signin
- HASHED_SIGNIN_PATH=SOME_HASH
- HASHED_SIGNUP_PATH=SOME_HASH
# Customization
- FAVICON=/ext/lib/boot/favicon.ico
- LOGO=/ext/lib/site/footer/logo-footer.svg
- LOGO_MOBILE=/ext/lib/site/footer/logo-footer.svg
# Organization
- ORGANIZATION_NAME=Consulta Pública Argentina
# Configuracion del mailer
- NOTIFICATIONS_MAILER_NAME=Consulta Pública Argentina
- NOTIFICATIONS_NODEMAILER={"host":"xxxxx.smtp.com","port":465,"secure":true,"auth":{"user":"xxxxxxxx","pass":"xxxxxxx"}}
# Social Share
- SOCIALSHARE_SITE_NAME=Consulta Pública Argentina
- SOCIALSHARE_SITE_DESCRIPTION="Plataforma de participación ciudadana de la República Argentina."
- SOCIALSHARE_IMAGE=https://cldup.com/Y7mWiU4D1Q.png
- SOCIALSHARE_DOMAIN=some_domain.gob.ar
- SOCIALSHARE_TWITTER_USERNAME=@innovacionar
- TWEET_TEXT=Estoy tratando de mejorar esta propuesta “{topic.mediaTitle}” ¡Participá vos también!
# Configuracion de la autenticacion
- CUSTOM_SIGNIN=true
- OIDC_AUTH=""
- OIDC_CALLBACK=""
- OIDC_CLIENT_ID=""
- OIDC_CLIENT_SECRET= ""
- OIDC_ISSUER=""
- OIDC_TOKEN=""
- OIDC_USER=""
- SSL_CERT=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
ports:
- 3000:3000
depends_on:
- mongo
mongo:
image: mongo:3.2
ports:
- 27017:27017
# Optionally mount external data directory
volumes:
- ./tmp/db:/data/db