21 lines
311 B
YAML
21 lines
311 B
YAML
version: "3"
|
|
|
|
networks:
|
|
cprush-net:
|
|
external: false
|
|
|
|
services:
|
|
cprush:
|
|
image: potato
|
|
networks:
|
|
- cprush-net
|
|
environment:
|
|
- MEMCACHE_ADDR=memcache:11211
|
|
ports:
|
|
- 3001:3001
|
|
depends_on:
|
|
- memcache
|
|
memcache:
|
|
image: memcached
|
|
networks:
|
|
- cprush-net |