feat(*): add docker-compose

Signed-off-by: hansputera <hanifdwyputrasembiring@gmail.com>
This commit is contained in:
hansputera
2024-09-08 15:35:45 +08:00
parent 1e716c337f
commit 10ec0d28f2

19
docker-compose.yaml Normal file
View File

@@ -0,0 +1,19 @@
services:
app:
build: .
ports:
- "3000:3000"
environment:
- REDIS_URL=redis://redis_db:6379
networks:
- app-network
depends_on:
- redis_db
image: "hansputera/tiktok-dl:latest"
redis_db:
image: "redis:alpine"
networks:
- app-network
networks:
app-network: