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

View File

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