Skip to content

Commit

Permalink
#38 docs: docker-compose redis 설정 파일 추가 (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
yonghwankim-dev authored Nov 29, 2023
1 parent 1186a79 commit 94f26b2
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docker-compose-analyze.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ services:
redis:
container_name: fineAnts_redis
image: redis:latest
volumes:
- ./redis.conf:/usr/local/etc/redis/redis.conf
command: redis-server /usr/local/etc/redis/redis.conf
ports:
- "6379:6379"
networks:
Expand Down
3 changes: 3 additions & 0 deletions docker-compose-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ services:
redis:
container_name: fineAnts_redis
image: redis:latest
volumes:
- ./redis.conf:/usr/local/etc/redis/redis.conf
command: redis-server /usr/local/etc/redis/redis.conf
ports:
- "6379:6379"
networks:
Expand Down
3 changes: 3 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ services:
redis:
container_name: fineAnts_redis
image: redis:latest
volumes:
- ./redis.conf:/usr/local/etc/redis/redis.conf
command: redis-server /usr/local/etc/redis/redis.conf
ports:
- "6379:6379"
networks:
Expand Down
1 change: 1 addition & 0 deletions redis.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
stop-writes-on-bgsave-error no

0 comments on commit 94f26b2

Please sign in to comment.