16 lines
246 B
YAML
16 lines
246 B
YAML
|
version: "3.0"
|
||
|
|
||
|
services:
|
||
|
memcached:
|
||
|
image: memcached
|
||
|
restart: always
|
||
|
expose:
|
||
|
- "11211"
|
||
|
|
||
|
yopass:
|
||
|
image: jhaals/yopass
|
||
|
restart: always
|
||
|
ports:
|
||
|
- "8007:80"
|
||
|
command: "--memcached=memcached:11211 --port 80"
|