services: api: image: git.mnco.dev/mnco/regecy-wallet-backend:latest container_name: mnco-mobile-api environment: - NODE_ENV=production - DATABASE_URL=${DATABASE_URL} - REDIS_HOST=redis - REDIS_PORT=6379 - PORT=4000 depends_on: - redis ports: - '4000:4000' redis: image: redis:7-alpine volumes: - redis_data:/data volumes: redis_data: