Preencha as informações solicitadas abaixo para criar sua Stack:
Powered by OrionDesign
version: "3.7" services: ## --------------------------- ORION --------------------------- ## chatwoot_app: image: chatwoot/chatwoot:latest ## Versão do Chatwoot command: bundle exec rails s -p 3000 -b 0.0.0.0 entrypoint: docker/entrypoints/rails.sh volumes: - chatwoot_storage:/app/storage ## Arquivos de conversa - chatwoot_public:/app/public ## Arquivos de logos - chatwoot_mailer:/app/app/views/devise/mailer ## Arquivos de email - chatwoot_mailers:/app/app/views/mailers ## Arquivos de emails networks: - ## Nome da rede interna environment: ## Qualquer Url com # no final - CHATWOOT_HUB_URL=https://oriondesign.art.br/setup# ## Nome da Empresa - INSTALLATION_NAME=OrionDesign ## Mude aqui se quiser. ## Secret key - SECRET_KEY_BASE=unvt904wtune098vunjre890vjne4980ntvhej ## Mudar chave aleatória ## Url Chatwoot - FRONTEND_URL=https:// - FORCE_SSL=true ## Idioma padrão - DEFAULT_LOCALE=pt_BR ## Google Cloud - Modifique de acordo com os seus dados (lembre-se de mudar no chatwoot_sidekiq) #- GOOGLE_OAUTH_CLIENT_ID=369777777777-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.apps.googleusercontent.com #- GOOGLE_OAUTH_CLIENT_SECRET=ABCDEF-GHijklmnoPqrstuvwX-yz1234567 #- GOOGLE_OAUTH_CALLBACK_URL=https:///omniauth/google_oauth2/callback ## Dados do Redis - REDIS_URL=redis://redis:6379 ## Dados do Postgres - POSTGRES_HOST=postgres - POSTGRES_USERNAME=postgres - POSTGRES_PASSWORD= ## Senha do postgres - POSTGRES_DATABASE=chatwoot ## Armazenamento - ACTIVE_STORAGE_SERVICE=local ## use s3_compatible para MinIO #- STORAGE_BUCKET_NAME=chatwoot #- STORAGE_ACCESS_KEY_ID=ACCESS_KEY_MINIO #- STORAGE_SECRET_ACCESS_KEY=SECRET_KEY_MINIO #- STORAGE_REGION=eu-south #- STORAGE_ENDPOINT=https://s3.DOMINIO.COM #- STORAGE_FORCE_PATH_STYLE=true ## Dados do SMTP - MAILER_SENDER_EMAIL= ## Email SMTP - SMTP_DOMAIN= ## Dominio do email - SMTP_ADDRESS= ## Host SMTP - SMTP_PORT= ## Porta SMTP - SMTP_SSL= ## Se a porta for 465 = true | Se a porta for 587 = false - SMTP_USERNAME= ## Usuario SMTP - SMTP_PASSWORD= ## Senha do SMTP - SMTP_AUTHENTICATION=login - SMTP_ENABLE_STARTTLS_AUTO=true - SMTP_OPENSSL_VERIFY_MODE=peer - MAILER_INBOUND_EMAIL_DOMAIN= ## Email SMTP ## Outras configurações - NODE_ENV=production - RAILS_ENV=production - INSTALLATION_ENV=docker - RAILS_LOG_TO_STDOUT=true - USE_INBOX_AVATAR_FOR_BOT=true - ENABLE_ACCOUNT_SIGNUP=false deploy: mode: replicated replicas: 1 placement: constraints: - node.role == manager resources: limits: cpus: "1" memory: 1024M labels: - traefik.enable=true - traefik.http.routers.chatwoot_app.rule=Host(``) - traefik.http.routers.chatwoot_app.entrypoints=websecure - traefik.http.routers.chatwoot_app.tls.certresolver=letsencryptresolver - traefik.http.routers.chatwoot_app.priority=1 - traefik.http.routers.chatwoot_app.service=chatwoot_app - traefik.http.services.chatwoot_app.loadbalancer.server.port=3000 - traefik.http.services.chatwoot_app.loadbalancer.passhostheader=true - traefik.http.middlewares.sslheader.headers.customrequestheaders.X-Forwarded-Proto=https - traefik.http.routers.chatwoot_app.middlewares=sslheader@docker ## --------------------------- ORION --------------------------- ## chatwoot_sidekiq: image: chatwoot/chatwoot:latest ## Versão do Chatwoot command: bundle exec sidekiq -C config/sidekiq.yml volumes: - chatwoot_storage:/app/storage ## Arquivos de conversa - chatwoot_public:/app/public ## Arquivos de logos - chatwoot_mailer:/app/app/views/devise/mailer ## Arquivos de email - chatwoot_mailers:/app/app/views/mailers ## Arquivos de emails networks: - ## Nome da rede interna environment: ## Qualquer Url com # no final - CHATWOOT_HUB_URL=https://oriondesign.art.br/setup# ## Nome da Empresa - INSTALLATION_NAME=$nome_empresa_chatwoot ## Secret key - SECRET_KEY_BASE=$encryption_key ## Url Chatwoot - FRONTEND_URL=https:// - FORCE_SSL=true ## Idioma padrão - DEFAULT_LOCALE=pt_BR ## Google Cloud - Modifique de acordo com os seus dados (lembre-se de mudar no chatwoot_sidekiq) #- GOOGLE_OAUTH_CLIENT_ID=369777777777-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.apps.googleusercontent.com #- GOOGLE_OAUTH_CLIENT_SECRET=ABCDEF-GHijklmnoPqrstuvwX-yz1234567 #- GOOGLE_OAUTH_CALLBACK_URL=https:///omniauth/google_oauth2/callback ## Dados do Redis - REDIS_URL=redis://redis:6379 ## Dados do Postgres - POSTGRES_HOST=postgres - POSTGRES_USERNAME=postgres - POSTGRES_PASSWORD= ## Senha do postgres - POSTGRES_DATABASE=chatwoot ## Armazenamento - ACTIVE_STORAGE_SERVICE=local ## use s3_compatible para MinIO #- STORAGE_BUCKET_NAME=chatwoot #- STORAGE_ACCESS_KEY_ID=ACCESS_KEY_MINIO #- STORAGE_SECRET_ACCESS_KEY=SECRET_KEY_MINIO #- STORAGE_REGION=eu-south #- STORAGE_ENDPOINT=https://s3.DOMINIO.COM #- STORAGE_FORCE_PATH_STYLE=true ## Dados do SMTP - MAILER_SENDER_EMAIL= ## Email SMTP - SMTP_DOMAIN= ## Dominio do email - SMTP_ADDRESS= ## Host SMTP - SMTP_PORT= ## Porta SMTP - SMTP_SSL= ## Se a porta for 465 = true | Se a porta for 587 = false - SMTP_USERNAME= ## Usuario SMTP - SMTP_PASSWORD= ## Senha do SMTP - SMTP_AUTHENTICATION=login - SMTP_ENABLE_STARTTLS_AUTO=true - SMTP_OPENSSL_VERIFY_MODE=peer - MAILER_INBOUND_EMAIL_DOMAIN= ## Email SMTP ## Outras configurações - NODE_ENV=production - RAILS_ENV=production - INSTALLATION_ENV=docker - RAILS_LOG_TO_STDOUT=true - USE_INBOX_AVATAR_FOR_BOT=true - ENABLE_ACCOUNT_SIGNUP=false deploy: mode: replicated replicas: 1 placement: constraints: - node.role == manager resources: limits: cpus: "1" memory: 1024M ## --------------------------- ORION --------------------------- ## volumes: chatwoot_storage: external: true name: chatwoot_storage chatwoot_public: external: true name: chatwoot_public chatwoot_mailer: external: true name: chatwoot_mailer chatwoot_mailers: external: true name: chatwoot_mailers networks: : ## Nome da rede interna external: true name: ## Nome da rede interna
Powered by OrionDesign