help@rskworld.in +91 93305 39277
RSK World
  • Home
  • Development
    • Web Development
    • Mobile Apps
    • Software
    • Games
    • Project
  • Technologies
    • Data Science
    • AI Development
    • Cloud Development
    • Blockchain
    • Cyber Security
    • Dev Tools
    • Testing Tools
  • About
  • Contact

Theme Settings

Color Scheme
Display Options
Font Size
100%
Back to Project
RSK World
ruby-todo-list
RSK World
ruby-todo-list
Ruby Todo List - Task Management with User Authentication + Categories + Search + File Attachments + Email Notifications + Rails MVC + Modern Web Interface + API Integration + Educational Design
ruby-todo-list
  • app
  • bin
  • config
  • db
  • lib
  • log
  • public
  • test
  • tmp
  • vendor
  • .env.example1.2 KB
  • .gitignore1.6 KB
  • .ruby-version208 B
  • Dockerfile816 B
  • Gemfile2.7 KB
  • LICENSE1.4 KB
  • Procfile266 B
  • README.md9.2 KB
  • RELEASE_NOTES.md7.5 KB
  • Rakefile429 B
  • config.ru372 B
  • docker-compose.yml1.3 KB
  • index.html39.4 KB
  • package.json890 B
  • ruby-todo-list.png.html971 B
docker-compose.yml
docker-compose.yml
Raw Download
Find: Go to:
# Ruby To-Do List Application - Docker Compose
# Created by: Molla Samser (help@rskworld.in, +91 93305 39277)
# Address: Nutanhat, Mongolkote, Purba Burdwan, West Bengal, India, 713147
# Year: 2026

version: '3.8'

services:
  db:
    image: postgres:15
    restart: always
    environment:
      POSTGRES_DB: ruby_todo_list_production
      POSTGRES_USER: postgres
      POSTGRES_PASSWORD: password
    volumes:
      - postgres_data:/var/lib/postgresql/data
    ports:
      - "5432:5432"

  redis:
    image: redis:7-alpine
    restart: always
    ports:
      - "6379:6379"

  app:
    build: .
    restart: always
    environment:
      RAILS_ENV: production
      DATABASE_URL: postgres://postgres:password@db:5432/ruby_todo_list_production
      REDIS_URL: redis://redis:6379/1
    depends_on:
      - db
      - redis
    ports:
      - "3000:3000"
    volumes:
      - ./storage:/app/storage
      - ./log:/app/log

  sidekiq:
    build: .
    restart: always
    environment:
      RAILS_ENV: production
      DATABASE_URL: postgres://postgres:password@db:5432/ruby_todo_list_production
      REDIS_URL: redis://redis:6379/1
    depends_on:
      - db
      - redis
    command: bundle exec sidekiq

volumes:
  postgres_data:
56 lines•1.3 KB
yaml

About RSK World

Founded by Molla Samser, with Designer & Tester Rima Khatun, RSK World is your one-stop destination for free programming resources, source code, and development tools.

Founder: Molla Samser
Designer & Tester: Rima Khatun

Development

  • Game Development
  • Web Development
  • Mobile Development
  • AI Development
  • Development Tools

Legal

  • Terms & Conditions
  • Privacy Policy
  • Disclaimer

Contact Info

Nutanhat, Mongolkote
Purba Burdwan, West Bengal
India, 713147

+91 93305 39277

hello@rskworld.in
support@rskworld.in

© 2026 RSK World. All rights reserved.

Content used for educational purposes only. View Disclaimer