-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ANCHOR-743] Fixed the incorrect server label in docker_compose.yaml file #1591
Merged
lijamie98
merged 7 commits into
stellar:develop
from
lijamie98:feature/anchor-743-add-docker-compose-documentation
Dec 18, 2024
Merged
Changes from 1 commit
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
71fd765
Add how to quick start with docker compose document
lijamie98 eec424e
Removed quick start guide but leave small fixes
lijamie98 45cfe3a
Merge remote-tracking branch 'sdf/develop' into feature/anchor-743-ad…
lijamie98 d29787d
Merge remote-tracking branch 'sdf/develop' into feature/anchor-743-ad…
lijamie98 a8305af
Merge remote-tracking branch 'sdf/develop' into feature/anchor-743-ad…
lijamie98 0649b93
Merge remote-tracking branch 'sdf/develop' into feature/anchor-743-ad…
lijamie98 f3f5a65
Merge remote-tracking branch 'sdf/develop' into feature/anchor-743-ad…
lijamie98 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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 |
---|---|---|
|
@@ -12,7 +12,7 @@ services: | |
To start the services: `docker-compose --profile v2-stable up` | ||
maintainer: "[email protected]" | ||
|
||
stable-servers: | ||
latest-servers: | ||
extends: | ||
file: service-runner/src/main/resources/common/docker-compose.yaml | ||
service: dev-servers | ||
|
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,29 @@ | ||
# How to quick start Anchor Platform | ||
## Prepare Docker daemon | ||
Before you start, please make sure that `docker` daemon or Docker Desktop is running. | ||
|
||
## Git clone the repository | ||
Download Anchor Platform repository from GitHub: | ||
```shell | ||
git clone [email protected]:stellar/java-stellar-anchor-sdk.git | ||
cd java-stellar-anchor-sdk | ||
``` | ||
|
||
## Run the Anchor Platform | ||
### Version 2.x stable release | ||
Run the Anchor Platform with version 2.x stable release in default configuration: | ||
```shell | ||
docker compose --profile v2-stable up | ||
``` | ||
### Latest release | ||
Run the Anchor Platform with latest release in default configuration: | ||
```shell | ||
docker compose --profile latest up | ||
``` | ||
|
||
### Run the Anchor Platform with locally built image | ||
Run the Anchor Platform with locally built image in default configuration: | ||
```shell | ||
docker build -t stellar/anchor-platform:local . | ||
docker compose --profile local up | ||
``` |
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We also have quick start instructions in the main README https://github.com/stellar/java-stellar-anchor-sdk/blob/develop/docs/README.md#quickstart. Should we merge the two?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed and left one-line fix.