Sign inSign up

webinage/gadael

By webinage

Updated over 6 years ago

Image
1

10K+

webinage/gadael repository overview

Docker-compose example

version: "3.3"
services:
  mongo:
    image: mongo:latest
    restart: always
    volumes:
      - /data/db:/data/db
    networks:
      - "bridged"
  gadael:
    image: webinage/gadael:0.0.9
    ports:
      - "3000:3000"
    environment:
      - LOGHTTP=true
      - CSRFPROTECTION=true
      - POSTPHONE=true
      - CALLBACK_URL=your.host.net
      - APP_HOST=
      - APP_PORT=3000
      - APP_COMPANY=
      - APP_LANGUAGE=fr
      - APP_CRYPTO_KEY=k8yb0brda2t
      - APP_TIMEOUT=
      - DB_INIT=true
      - DB_HOST=mongo/
      - DB_NAME=gadael
      - DB_AUTO_INDEX=true
      - LOGIN_ATTEMPT_IP=50
      - LOGIN_ATTEMPT_USER=7
      - LOGIN_ATTEMPT_LOG_EXPIRATION=20m
      - ACCOUNT_VERIFICATION=false
      - MAIL_HOST=localhost
      - MAIL_PORT=dock
      - MAIL_SECURE=
      - MAIL_USER=
      - MAIL_PASS=
      - MAIL_HEADER="Gadael email"
      - [email protected]
    restart: always
    depends_on: 
      - mongo
    networks:
      - "bridged"
    
networks:
  bridged:
    driver: bridge

More infos : Source : https://github.com/gadael/gadael Main Site : https://www.gadael.com/fr/

Tag summary

Content type

Image

Digest

Size

304 MB

Last updated

over 6 years ago

docker pull webinage/gadael