Skip to content

Commit

Permalink
fix: docker-compose redis포함
Browse files Browse the repository at this point in the history
  • Loading branch information
SunYerim committed Jun 17, 2024
1 parent d2e3f7a commit 313483d
Show file tree
Hide file tree
Showing 12 changed files with 197 additions and 207 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.gradle
*.bin
*.bin
build
Binary file modified build/libs/auth-0.0.1-SNAPSHOT-plain.jar
Binary file not shown.
Binary file modified build/libs/auth-0.0.1-SNAPSHOT.jar
Binary file not shown.

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions build/reports/tests/test/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ <h1>Test Summary</h1>
</td>
<td>
<div class="infoBox" id="duration">
<div class="counter">1.245s</div>
<div class="counter">0.316s</div>
<p>duration</p>
</div>
</td>
Expand Down Expand Up @@ -85,7 +85,7 @@ <h2>Packages</h2>
<td>1</td>
<td>0</td>
<td>0</td>
<td>1.245s</td>
<td>0.316s</td>
<td class="success">100%</td>
</tr>
</tbody>
Expand All @@ -112,7 +112,7 @@ <h2>Classes</h2>
<td>1</td>
<td>0</td>
<td>0</td>
<td>1.245s</td>
<td>0.316s</td>
<td class="success">100%</td>
</tr>
</tbody>
Expand All @@ -126,7 +126,7 @@ <h2>Classes</h2>
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
</label>
</div>Generated by
<a href="http://www.gradle.org">Gradle 8.8</a> at 2024. 6. 16. 오후 3:40:12</p>
<a href="http://www.gradle.org">Gradle 8.8</a> at 2024. 6. 16. 오후 5:22:41</p>
</div>
</div>
</body>
Expand Down
6 changes: 3 additions & 3 deletions build/reports/tests/test/packages/com.sunjoo.auth.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ <h1>Package com.sunjoo.auth</h1>
</td>
<td>
<div class="infoBox" id="duration">
<div class="counter">1.245s</div>
<div class="counter">0.316s</div>
<p>duration</p>
</div>
</td>
Expand Down Expand Up @@ -83,7 +83,7 @@ <h2>Classes</h2>
<td>1</td>
<td>0</td>
<td>0</td>
<td>1.245s</td>
<td>0.316s</td>
<td class="success">100%</td>
</tr>
</table>
Expand All @@ -96,7 +96,7 @@ <h2>Classes</h2>
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
</label>
</div>Generated by
<a href="http://www.gradle.org">Gradle 8.8</a> at 2024. 6. 16. 오후 3:40:12</p>
<a href="http://www.gradle.org">Gradle 8.8</a> at 2024. 6. 16. 오후 5:22:41</p>
</div>
</div>
</body>
Expand Down
170 changes: 85 additions & 85 deletions build/test-results/test/TEST-com.sunjoo.auth.AuthApplicationTests.xml

Large diffs are not rendered by default.

Binary file modified build/test-results/test/binary/output.bin.idx
Binary file not shown.
14 changes: 2 additions & 12 deletions build/tmp/bootJar/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -1,12 +1,2 @@
Manifest-Version: 1.0
Main-Class: org.springframework.boot.loader.launch.JarLauncher
Start-Class: com.sunjoo.auth.AuthApplication
Spring-Boot-Version: 3.3.0
Spring-Boot-Classes: BOOT-INF/classes/
Spring-Boot-Lib: BOOT-INF/lib/
Spring-Boot-Classpath-Index: BOOT-INF/classpath.idx
Spring-Boot-Layers-Index: BOOT-INF/layers.idx
Build-Jdk-Spec: 17
Implementation-Title: auth
Implementation-Version: 0.0.1-SNAPSHOT

Manifest-Version: 1.0

4 changes: 2 additions & 2 deletions build/tmp/jar/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Manifest-Version: 1.0

Manifest-Version: 1.0

27 changes: 13 additions & 14 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
version: '3.8'
services:
auth:
image: sunyerim/sunjoo:auth
container_name: sunjoo-server-auth
redis:
image: redis
restart: always
depends_on:
- redis
ports:
- "8080:8090"
redis:
image: sunyerim/sunjoo:redis
- 6379:6379
spring:
image: auth
build:
context: .
dockerfile: ./Dockerfile
restart: always
ports:
- "6379:6379"
volumes:
- backup-redis:/data
volumes:
backup-redis:
driver: local
- 8080:8090
depends_on:
- redis


Empty file modified gradlew
100644 → 100755
Empty file.

0 comments on commit 313483d

Please sign in to comment.