Skip to content

Commit c75e20b

Browse files
author
Test
committed
another try at getting redis going
1 parent 207c5c3 commit c75e20b

2 files changed

Lines changed: 8 additions & 6 deletions

File tree

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.16-alpha
1+
1.0.17-alpha

docker-compose.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ services:
1414
depends_on:
1515
- redis
1616
networks:
17-
- app_network
17+
- thinknet
1818

1919
worker:
2020
build: .
@@ -29,15 +29,17 @@ services:
2929
depends_on:
3030
- redis
3131
networks:
32-
- app_network
32+
- thinknet
3333

3434
redis:
35-
image: redis:7.2.5
35+
container_name: redis
36+
image: redis:latest
37+
command: ["redis-server", "--bind", "redis", "--port", "6379"]
3638
ports:
3739
- "6379:6379"
3840
networks:
39-
- app_network
41+
- thinknet
4042

4143
networks:
42-
app_network:
44+
thinknet:
4345
driver: bridge

0 commit comments

Comments
 (0)