add memcached support

This commit is contained in:
matt 2016-05-12 02:17:39 +01:00
parent 40899bc40f
commit cf89670671
2 changed files with 17 additions and 0 deletions

View File

@ -34,6 +34,7 @@ services:
- /var/lib/postgres
- /var/lib/mariadb
- /var/lib/redis
- /var/lib/memcached
### MySQL Container #########################################
@ -108,4 +109,13 @@ services:
links:
- beanstalkd
### Memcached Container #########################################
memcached:
build: ./memcached
volumes_from:
- data
ports:
- "11211:11211"
### Add more Containers below ###############################

7
memcached/Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM memcached:latest
MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
CMD ["memcached"]
EXPOSE 11211