add ca for node
This commit is contained in:
parent
30c93d9c88
commit
6a63fea5fa
1 changed files with 20 additions and 0 deletions
|
@ -78,8 +78,12 @@ services:
|
|||
- NODE_ENV=development
|
||||
- GANCIO_DB_DIALECT=sqlite
|
||||
- GANCIO_DB_STORAGE=./gancio.sqlite
|
||||
- NODE_EXTRA_CA_CERTS=/etc/ssl/certs/ca-certificates.crt
|
||||
- NODE_TLS_REJECT_UNAUTHORIZED='0'
|
||||
volumes:
|
||||
- ./gancio/data:/home/node/data
|
||||
- /etc/ssl/certs/ca-certificates.crt:/etc/ssl/certs/ca-certificates.crt:rox
|
||||
|
||||
ports:
|
||||
- "13120:13120"
|
||||
|
||||
|
@ -132,6 +136,22 @@ services:
|
|||
ports:
|
||||
- 8180:80
|
||||
|
||||
mailpit:
|
||||
image: axllent/mailpit
|
||||
container_name: mailpit
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- mailpit_data:/data
|
||||
ports:
|
||||
- 8025:8025
|
||||
- 1025:1025
|
||||
environment:
|
||||
MP_MAX_MESSAGES: 5000
|
||||
MP_DATABASE: /data/mailpit.db
|
||||
MP_SMTP_AUTH_ACCEPT_ANY: 1
|
||||
MP_SMTP_AUTH_ALLOW_INSECURE: 1
|
||||
|
||||
volumes:
|
||||
wordpress_database_data:
|
||||
mobilizon_database_data:
|
||||
mailpit_data:
|
||||
|
|
Loading…
Reference in a new issue