Skip to content

Commit

Permalink
[INIT] docker-compose.yml파일 작성
Browse files Browse the repository at this point in the history
  • Loading branch information
paragon0107 committed Jul 2, 2024
1 parent 81d3dbc commit 3a65c6d
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
12 changes: 12 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
services:
redis:
container_name: redis
image: alpine
hostname: redis
ports:
- "6379:6379"
networks:
- tiki-network
networks:
tiki-network:
external: true
4 changes: 4 additions & 0 deletions src/main/resources/application-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,7 @@ spring:
format_sql: true
default_batch_fetch_size: 1000
auto_quote_keyword: true
data:
redis:
host: redis
port: 6379

0 comments on commit 3a65c6d

Please sign in to comment.