Skip to content

Beanstalkd service add-on for DDEV (with arm64 support)

License

Notifications You must be signed in to change notification settings

MrKistic/ddev-beanstalkd

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tests

What is ddev-beanstalkd?

This add-on allows you to easily install beanstalkd (with arm64 support) into a DDEV project.

It configures and installs the rayyounghong/beanstalkd docker image to provide a beanstalkd service within your DDEV project.

Installation

  1. Install the addon

    For DDEV v1.23.5 or above run

    ddev add-on get mrkistic/ddev-beanstalkd

    For earlier versions of DDEV run

    ddev get mrkistic/ddev-beanstalkd
  2. Restart DDEV to start the addon.

    ddev restart

Using beanstalkd service

  • beanstalkd listens on the default port 11300 on internal hostname bankstalkd.
  • Configure your application to access beanstalkd on the host:port, i.e. beanstalkd:11300.
  • To access beanstalkd directly, run ddev ssh to connect to the web container, then telnet to the beanstalkd container on port 11300, e.g. telnet beanstalkd 11300.
  • Alternatively, expose the listening port with a custom Docker Compose file. Then connect directly to your docker container on port 11300, e.g. telnet docker.lan 11300. Then you can use a UI console like aurora to monitor your beanstalkd queue. e.g.:
services:
  my_beanstalkd:
    ports:
      - "11300:11300"

About

Beanstalkd service add-on for DDEV (with arm64 support)

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 100.0%