Docker image to run Ruboty with Slack integration.
1.3K
Ruboty on Docker
You need to run redis container first. See the official redis container document on Dockerhub if you need.
% mkdir your_working_directory
% cd your_working_directory
% cat << EOF >> Dockerfile
FROM cnosuke/docker-ruboty
MAINTAINER cnosuke
COPY env /app/.env
CMD ["/app/run_ruboty.sh"]
EOF
% curl https://raw.githubusercontent.com/cnosuke/docker-ruboty/master/app/env.sample -o env
% vi env # Edit configurations to run Ruboty with ENV
% docker build -t ruboty .
% docker run -d --link redis:db ruboty
Content type
Image
Digest
Size
463.1 MB
Last updated
over 8 years ago
docker pull cnosuke/ruboty