Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
version: '3'
services:
lita:
build: .
links:
- redis:redis
volumes:
# Sync all the local code to the app directory
- ./:/app
# Since we are syncing the whole directory, we need to make sure our local `.bundle` directory is not over-written
- ./.docker_bundle:/app/.bundle
environment:
- SLACK_TOKEN
redis:
image: redis