25 lines
488 B
YAML
25 lines
488 B
YAML
version: '3'
|
|
services:
|
|
imgcdn:
|
|
image: git.rznet.fr/razian/imgcdn
|
|
container_name: imgcdn
|
|
ports:
|
|
- "8080:8080"
|
|
restart: always
|
|
#volumes:
|
|
# - ./hosts.cfg:/app/hosts.cfg
|
|
command:
|
|
- --redis=true
|
|
- --redishost=redis
|
|
#- --config=hosts.cfg
|
|
|
|
redis:
|
|
image: redis:latest
|
|
restart: always
|
|
container_name: imgcdn-redis
|
|
command:
|
|
- redis-server
|
|
- --bind redis
|
|
- --maxmemory 256mb
|
|
- --maxmemory-policy allkeys-lfu
|