Skip to content

Commit

Permalink
Merge pull request #104 from sgdevcamp2023/feat/#103
Browse files Browse the repository at this point in the history
Feat/#103 유저 / 플레이리스트 / 채팅 더미 데이터 추가
  • Loading branch information
kor-Chipmunk authored Feb 22, 2024
2 parents ada9659 + 21f0c0c commit e0fe2f4
Show file tree
Hide file tree
Showing 18 changed files with 883 additions and 16 deletions.
8 changes: 8 additions & 0 deletions src/backend/playlist-server/docker-compose-hub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,14 @@ services:
- ./database/mongoDB/data:/data/db
- ./database/mongoDB/initdb.d:/docker-entrypoint-initdb.d:ro

playlist-mongo-seed:
image: mongo:7.0.5
links:
- playlist-mongo
volumes:
- ./infra:/mongo-seed
command: /mongo-seed/import.sh

playlist-redis:
image: redis:7.0
ports:
Expand Down
8 changes: 8 additions & 0 deletions src/backend/playlist-server/docker-compose-local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,14 @@ services:
- ./database/mongoDB/data:/data/db
- ./database/mongoDB/initdb.d:/docker-entrypoint-initdb.d:ro

playlist-mongo-seed:
image: mongo:7.0.5
links:
- playlist-mongo
volumes:
- ./infra:/mongo-seed
command: /mongo-seed/import.sh

playlist-redis:
image: redis:7.0
ports:
Expand Down
8 changes: 8 additions & 0 deletions src/backend/playlist-server/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,14 @@ services:
- ./database/mongoDB/data:/data/db
- ./database/mongoDB/initdb.d:/docker-entrypoint-initdb.d:ro

playlist-mongo-seed:
image: mongo:7.0.5
links:
- playlist-mongo
volumes:
- ./infra:/mongo-seed
command: /mongo-seed/import.sh

playlist-redis:
image: redis:7.0
ports:
Expand Down
Loading

0 comments on commit e0fe2f4

Please sign in to comment.