Skip to content

Commit

Permalink
another try at getting redis going
Browse files Browse the repository at this point in the history
  • Loading branch information
Test committed Sep 19, 2024
1 parent 207c5c3 commit c75e20b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.16-alpha
1.0.17-alpha
12 changes: 7 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ services:
depends_on:
- redis
networks:
- app_network
- thinknet

worker:
build: .
Expand All @@ -29,15 +29,17 @@ services:
depends_on:
- redis
networks:
- app_network
- thinknet

redis:
image: redis:7.2.5
container_name: redis
image: redis:latest
command: ["redis-server", "--bind", "redis", "--port", "6379"]
ports:
- "6379:6379"
networks:
- app_network
- thinknet

networks:
app_network:
thinknet:
driver: bridge

0 comments on commit c75e20b

Please sign in to comment.