comment out the Beanstalkd Container from the docker-compose

This commit is contained in:
Mahmoud Zalt 2015-09-28 18:30:23 +03:00
parent c84c92d752
commit d96bf4b177
1 changed files with 8 additions and 9 deletions

View File

@ -15,7 +15,6 @@ php-nginx:
links:
- mysql
- redis
- beanstalkd
privileged: true
# extra_hosts:
# - "laravel.dev:xxx.xxx.xxx.xxx"
@ -47,14 +46,6 @@ redis:
restart: always
privileged: true
# Beanstalkd Container #-----------------------------------
beanstalkd:
image: laradock/beanstalkd:latest
container_name: beanstalkd
ports:
- "11300:11300"
privileged: true
# Data Volume Container #----------------------------------
data:
image: laradock/data:latest
@ -63,4 +54,12 @@ data:
- /var/lib/mysql
- /var/lib/redis
# Beanstalkd Container #-----------------------------------
# beanstalkd:
# image: laradock/beanstalkd:latest
# container_name: beanstalkd
# ports:
# - "11300:11300"
# privileged: true
#----------------------------------------------------------