Skip to content

Commit

Permalink
Rename redis container
Browse files Browse the repository at this point in the history
  • Loading branch information
ways committed Oct 3, 2024
1 parent 5077e62 commit db40067
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions compose.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
services:
cache:
redis:
image: redis
restart: unless-stopped
ports:
Expand All @@ -10,12 +10,16 @@ services:

fingr:
image: fingr:latest
command: ["--verbose", "--redis_host", "cache"]
command: ["--verbose", "--redis_host", "redis"]
restart: unless-stopped
ports:
- '7979:7979'
# - '7979:7979'
- published: 7979
target: 7979
protocol: tcp
mode: host
depends_on:
- cache
- redis

volumes:
cache:
Expand Down

0 comments on commit db40067

Please sign in to comment.