Skip to content

Commit

Permalink
rebase done.
Browse files Browse the repository at this point in the history
  • Loading branch information
Yemaneberhan-Lemma committed Dec 18, 2024
1 parent dacf580 commit acd172e
Show file tree
Hide file tree
Showing 9 changed files with 2,350 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .ddev/addon-metadata/memcached/manifest.yaml
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: []
28 changes: 28 additions & 0 deletions .ddev/docker-compose.memcached.yaml
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"
Loading

0 comments on commit acd172e

Please sign in to comment.