Files
RushStatistics/docker-compose.yaml
2025-06-02 21:05:59 -07:00

26 lines
401 B
YAML

version: "3"
networks:
cprush-net:
external: false
services:
cprush:
# image: potato
build: ./app
networks:
- cprush-net
environment:
- MEMCACHE_ADDR=memcache:11211
ports:
- 3001:3001
depends_on:
- memcache
loader:
build: ./loader
environment:
- REPLAY_TIME=600
memcache:
image: memcached
networks:
- cprush-net