-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dacf580
commit acd172e
Showing
9 changed files
with
2,350 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
name: memcached | ||
repository: ddev/ddev-memcached | ||
version: v1.1.7 | ||
install_date: "2024-07-06T15:38:32+03:00" | ||
project_files: | ||
- docker-compose.memcached.yaml | ||
global_files: [] | ||
removal_actions: [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# DDEV-Local memcached recipe file. | ||
#ddev-generated | ||
# To use this in your own project: | ||
# 1. Copy this file to your project's ".ddev" directory. | ||
# 2. Launch "ddev start". | ||
# 3. Configure the project to look for memcached at hostname "memcached" and | ||
# port 11211. | ||
# 4. Optional: adjust the 'command' line below to change CLI flags sent to | ||
# memcached. | ||
|
||
services: | ||
memcached: | ||
container_name: ddev-${DDEV_SITENAME}-memcached | ||
image: memcached:1.6 | ||
restart: "no" | ||
# memcached is available at this port inside the container. | ||
expose: | ||
- 11211 | ||
# These labels ensure this service is discoverable by ddev. | ||
labels: | ||
com.ddev.site-name: ${DDEV_SITENAME} | ||
com.ddev.approot: $DDEV_APPROOT | ||
|
||
# Arguments passed to the memcached binary. | ||
command: ["-m", "128"] | ||
|
||
volumes: | ||
- ".:/mnt/ddev_config" |
Oops, something went wrong.