Skip to content

Commit d222cea

Browse files
author
zhang.cheng
committed
增加Beanstalk
1 parent 192e55c commit d222cea

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

beanstalk/Dockerfile

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
FROM alpine
2+
3+
LABEL maintainer="ninja911<[email protected]>"
4+
5+
RUN apk add --no-cache tini beanstalkd xdg-utils curl wget
6+
7+
8+
RUN mkdir -p /usr/local/aurora/ && \
9+
cd /usr/local/aurora/ && \
10+
wget --no-check-certificate http://www.ninja911.com/downloads/aurora_linux_amd64_v2.2.tar.gz && \
11+
tar -zxf /usr/local/aurora/aurora_linux_amd64_v2.2.tar.gz && \
12+
chmod +x /usr/local/aurora/aurora && \
13+
rm -f /usr/local/aurora/aurora_linux_amd64_v2.2.tar.gz
14+
15+
# 启动aurora命令
16+
# /usr/local/aurora/aurora -c /usr/local/aurora/conf/aurora.toml
17+
18+
WORKDIR /usr/local/aurora
19+
20+
EXPOSE ${BEANSTALKD_PORT} 3000
21+
22+
ENTRYPOINT ["/sbin/tini", "--"]
23+
24+
CMD /usr/bin/beanstalkd -l $BEANSTALKD_ADDR -p $BEANSTALKD_PORT -z $BEANSTALKD_MAX_JOB_SIZE

beanstalk/aurora/conf/aurora.toml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
servers = []
2+
listen = "0.0.0.0:3000"
3+
version = 2.2
4+
5+
[openpage]
6+
enabled = true
7+
8+
[auth]
9+
enabled = false
10+
password = "password"
11+
username = "admin"
12+
13+
[sample]
14+
storage = "{}"

0 commit comments

Comments
 (0)