Skip to content

Commit 5841439

Browse files
committed
Move to new ddev get technique
1 parent de90ecd commit 5841439

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
## What is this?
44

5-
This repository allows you to quickly install memcached into a [Ddev](https://ddev.readthedocs.io) project using just `ddev service get drud/ddev-memcached`.
5+
This repository allows you to quickly install memcached into a [Ddev](https://ddev.readthedocs.io) project using just `ddev get get drud/ddev-memcached`.
66

77
## Installation
88

9-
1.`ddev service get drud/ddev-memcached && ddev restart`
9+
1.`ddev get drud/ddev-memcached && ddev restart`
1010
5. `ddev restart`
1111

1212
## Explanation

install.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
name: memcached
22

3+
pre_install_actions:
4+
35
# files and directories listed here are copied into .ddev
46
files:
57
- docker-compose.memcached.yaml
68

7-
9+
post_install_actions:

tests/test.bats

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ teardown() {
1717

1818
@test "basic installation" {
1919
cd ${TESTDIR}
20-
ddev service get ${DIR}
20+
ddev get ${DIR}
2121
ddev restart
2222
v=$(ddev exec 'printf "version\nquit\nquit\n" | nc memcached 11211')
2323
[[ "${v}" = VERSION* ]]

0 commit comments

Comments
 (0)