Initial Commit with Working server and metrics
This commit is contained in:
14
docker-compose.yml
Normal file
14
docker-compose.yml
Normal file
@@ -0,0 +1,14 @@
|
||||
services:
|
||||
cache-api:
|
||||
build: .
|
||||
env_file: .env
|
||||
ports:
|
||||
- "8080:8080" #PROXY
|
||||
- "9090:9090" #METRIK
|
||||
depends_on:
|
||||
- redis
|
||||
redis:
|
||||
image: redis:7-alpine
|
||||
command: ["redis-server","--appendonly","yes"]
|
||||
volumes:
|
||||
- ./data/redis:/data
|
||||
Reference in New Issue
Block a user