From ffca986d335f3b28761649026b6b6406c54dd177 Mon Sep 17 00:00:00 2001 From: osama_ops Date: Wed, 5 Aug 2026 09:58:29 +0000 Subject: [PATCH] =?UTF-8?q?=D8=A5=D8=B6=D8=A7=D9=81=D8=A9=20docker-compose?= =?UTF-8?q?.yml=20-=20=D8=A8=D8=B3=D9=85=20=D8=A7=D9=84=D9=84=D9=87=20?= =?UTF-8?q?=D8=A7=D9=84=D8=B1=D8=AD=D9=85=D9=86=20=D8=A7=D9=84=D8=B1=D8=AD?= =?UTF-8?q?=D9=8A=D9=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker-compose.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..ea5e235 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,20 @@ +version: '3.8' + +services: + app: + build: . + container_name: arabic_app + ports: + - "8000:8000" + environment: + - LANG=ar_SA.UTF-8 + - TZ=Asia/Riyadh + volumes: + - ./data:/app/data + restart: unless-stopped + + redis: + image: redis:7-alpine + container_name: arabic_cache + ports: + - "6379:6379"