https://github.com/evandhq/beanstalkd
Beanstalkd and Beanstalkd-console Docker file
https://github.com/evandhq/beanstalkd
beanstalkd beanstalkd-monitor docker dockerfile php
Last synced: about 1 month ago
JSON representation
Beanstalkd and Beanstalkd-console Docker file
- Host: GitHub
- URL: https://github.com/evandhq/beanstalkd
- Owner: evandhq
- License: mit
- Created: 2017-10-14T13:35:25.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-10-15T10:41:03.000Z (over 8 years ago)
- Last Synced: 2025-08-23T19:25:55.847Z (10 months ago)
- Topics: beanstalkd, beanstalkd-monitor, docker, dockerfile, php
- Homepage:
- Size: 1.95 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Beanstalkd Docker
To deploy on AbarCloud:
1. Deploy beanstalkd:
```
oc new-app --strategy=docker https://github.com/evandhq/beanstalkd.git
```
2. Create a storage volume in AbarCloud and attach it to the beanstalkd deployment under `/var/lib/beanstalkd`
3. Deploy the web console using this:
```
oc new-app --strategy=docker --name=beanstalkd-console --context-dir=beanstalkd-console \
--env AUTH=enable \
--env AUTH_USERNAME=MY_USERNAME_HERE \
--env AUTH_PASSWORD=MY_PASSWORD_HERE \
https://github.com/schickling/dockerfiles
```
4. Create a secure route for the console:
```
oc expose service beanstalkd-console --name=beanstalkd-console --hostname=beanstalkd-console-staging.abar.cloud
oc patch route/beanstalkd-console -p '{"spec":{"tls":{"termination":"edge","insecureEdgeTerminationPolicy":"Redirect"}}}'
```