1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 01:39:24 +02:00
This commit is contained in:
Daniel Neto 2024-07-24 16:51:37 -03:00
parent 44f2777067
commit 3181d9b947

View file

@ -231,7 +231,7 @@ services:
image: memcached:alpine
restart: "unless-stopped"
command: >
sh -c "memcached -m 128 -c 1024 -t $(nproc) -vv"
sh -c "memcached -m 128 -c 1024 -t ${NPROC:-2} -vv"
ports:
- "${MEMCACHE_PORT:-11211}:11211"
deploy:
@ -244,6 +244,8 @@ services:
memory: '512M'
networks:
- app_net
environment:
- NPROC=${NPROC:-2}
networks:
app_net: