-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
32 changed files
with
571 additions
and
526 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,11 @@ | ||
version: '3.3' | ||
|
||
services: | ||
envoy: | ||
build: | ||
context: ./ | ||
dockerfile: ./envoy.Dockerfile | ||
image: 'grpcweb:envoy' | ||
container_name: 'envoy' | ||
restart: always | ||
ports: | ||
- '8080:8080' | ||
- '9901:9901' | ||
command: ['/etc/envoy/envoy.yaml'] | ||
depends_on: | ||
- yorkie | ||
# If you're using Mac or Windows, this special domain name("host.docker.internal" which makes containers able to connect to the host) | ||
# is supported by default. | ||
# But if you're using Linux and want an envoy container to communicate with the host, | ||
# it may help to define "host.docker.internal" in extra_hosts. | ||
# (Actually, other hostnames are available, but in that case you should update clusters[].host configurations of envoy.yaml) | ||
extra_hosts: | ||
- "host.docker.internal:host-gateway" | ||
yorkie: | ||
image: 'yorkieteam/yorkie:0.4.10' | ||
image: 'yorkieteam/yorkie:0.4.15' | ||
container_name: 'yorkie' | ||
command: [ | ||
'server', | ||
'--enable-pprof', | ||
] | ||
command: ['server', '--enable-pprof'] | ||
restart: always | ||
ports: | ||
- '11101:11101' | ||
- '11102:11102' | ||
- '8080:8080' | ||
- '8081:8081' |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#Fri Jun 16 11:23:01 KST 2023 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
version: v1 | ||
plugins: | ||
- plugin: buf.build/connectrpc/kotlin:v0.6.0 | ||
out: kotlin | ||
opt: lite | ||
- plugin: buf.build/protocolbuffers/kotlin | ||
out: kotlin | ||
opt: lite | ||
- plugin: buf.build/protocolbuffers/java | ||
out: java | ||
opt: lite |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
version: v1 | ||
directories: | ||
- proto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
version: v1 | ||
lint: | ||
use: | ||
- DEFAULT |
Oops, something went wrong.