Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

-b option for beanstalkd #69

Open
StalkAlex opened this issue Mar 16, 2017 · 3 comments
Open

-b option for beanstalkd #69

StalkAlex opened this issue Mar 16, 2017 · 3 comments

Comments

@StalkAlex
Copy link

Could you add variant with binary log and volume?

@alexxd35
Copy link

alexxd35 commented Nov 30, 2018

I want to add the -b option in docker-compose,and i had tried
command: beanstalkd -b /some/dir
but it doesn't work.
could you tell me how to use the -b option in docker-compose.yml?
beanstalkd:
image: schickling/beanstalkd:latest
# command: beanstalkd -b /etc/beanstalkdlog (this command doesn't work)
volumes:
- ${BEANSTALKD_LOG}:/etc/beanstalkdlog:ro
ports:
- "${BEANSTALKD_HOST_PORT}:11300"
networks:
- default

@xxy123456
Copy link

I have the same problem, have you solved it?

@uchagani
Copy link

uchagani commented Mar 4, 2020

please see this comment that explains how to use this: #107 (comment)

to use with docker-compose add your volume and add a command like this:

  beanstalkd:
    image: schickling/beanstalkd
    container_name: beanstalkd
    volumes:
      - /opt/docker/beanstalkd-data:/data
    ports:
      - 11300:11300
    command: "-p 11300 -b /data"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants