Last active
April 21, 2022 06:03
-
-
Save ajeetraina/d45ce2909e6772d46a92f2b0662bd06c to your computer and use it in GitHub Desktop.
RedisZindagi
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.7' | |
services: | |
redismod: | |
image: redis/redis-stack:latest | |
container_name: redis | |
restart: unless-stopped | |
environment: | |
EMAIL: [email protected] | |
volumes: | |
- ./persistence/redismod/data:/data | |
networks: | |
- default | |
ports: | |
- 6379:6379 | |
rediszindagi: | |
image: ghcr.io/bhanukorthiwada/rediszindagi:latest | |
container_name: zindagi | |
restart: unless-stopped | |
environment: | |
ASPNETCORE_ENVIRONMENT: ${APP_ENV} | |
AUTH0__DOMAIN: ${APP_AUTH0_DOMAIN} | |
AUTH0__CLIENTID: ${APP_AUTH0_CLIENTID} | |
AUTH0__CLIENTSECRET: ${APP_AUTH0_CLIENTSECRET} | |
SMTP__DISABLE: ${APP_SMTP_DISABLE} | |
SMTP__FROM: ${APP_SMTP_FROM} | |
SMTP__HOST: ${APP_SMTP_HOST} | |
SMTP__PORT: ${APP_SMTP_PORT} | |
SMTP__USERNAME: ${APP_SMTP_USERNAME} | |
SMTP__PASSWORD: ${APP_SMTP_PASSWORD} | |
SMTP__USESSL: ${APP_SMTP_USESSL} | |
CONNECTIONSTRINGS__REDIS: ${APP_REDIS_CONNECTIONSTRING} | |
volumes: | |
- ./persistence/zindagi/logs:/app/logs | |
networks: | |
- default | |
ports: | |
- 80:80 | |
depends_on: | |
- redismod | |
networks: | |
default: | |
name: network_default | |
driver: bridge |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment