Skip to content

Commit

Permalink
docs: add yml
Browse files Browse the repository at this point in the history
- 도커 설정파일을 추가하였습니다.
  • Loading branch information
Ganghee-Lee-0522 committed Feb 26, 2024
1 parent cded2a1 commit 3005553
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/main/resources/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
version: '3.4'

services:
redis:
image: redis
ports:
- 6379:6379

donut:
image: donut
build:
context: .
dockerfile: ./Dockerfile
ports:
- 8080:8080
depends_on:
- redis

0 comments on commit 3005553

Please sign in to comment.