UNPKG

relution-sdk

Version:

Relution Software Development Kit for TypeScript and JavaScript

45 lines (44 loc) 1.23 kB
version: '2' services: relution: environment: - TZ=UTC - DATABASE_TYPE=mysql - DATABASE_URL=jdbc:mysql://database/relution?useServerPrepStmts=true - DATABASE_USER=relution - DATABASE_PWD=relution - MONGO_DATABASE=relution - MONGO_HOST=mongodb - MONGO_PORT=27017 - HOSTNAME=http://localhost:8080 - ORGA_NAME=docker - ORGA_FULLNAME=docker - ORGA_REPLYTOMAIL=noreply@relution.io - ORGA_CONTACT_NAME=Stefan Jauker - ORGA_CONTACT_EMAIL=s.jauker@mwaysolutions.com - ORGA_CONTACT_PHONE=+4917661290494 - ORGA_ADMIN_USERNAME=admin - ORGA_ADMIN_GIVENNAME=Stefan - ORGA_ADMIN_SURNAME=Jauker - ORGA_ADMIN_EMAIL=s.jauker@mwaysolutions.com - ORGA_ADMIN_PASSWORD=S3creT123 - SMTP_HOST=localost - SMTP_PORT=587 ports: - '8080:8080' image: relution/relution:latest links: - "database" - "mongodb" database: environment: - MYSQL_PASSWORD=relution - MYSQL_USER=relution - MYSQL_DATABASE=relution - MYSQL_ROOT_PASSWORD=relution expose: - '3306' image: mysql:latest mongodb: expose: - '27017'