-
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-868] Fix broken docker-compose file #1583
[ANCHOR-868] Fix broken docker-compose file #1583
Conversation
```shell | ||
docker build --build-arg BASE_IMAGE=gradle:7.6.4-jdk17 -t anchor-platform:local ./ | ||
docker compose -f service-runner/src/main/resources/docker-compose.yaml up -d |
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.
Should we provide a way for developers to start the stack against a locally built image?
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.
I think this is good idea as I was thinking about it.
I will add a local profile.
...-runner/src/main/kotlin/org/stellar/anchor/platform/run_profiles/RunKotlinReferenceServer.kt
Show resolved
Hide resolved
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.
Minor comment
docs/README.md
Outdated
To build the Anchor Platform image locally, run the following command in the root directory of the project. | ||
```shell | ||
# In the root directory of the project | ||
docker build -t stellar/anchor-platform . |
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.
Do we need to add the :local
tag here?
Description
reference_config.yaml
file.v2_stable
andlatest
profiles to docker_compose.yamlREADME.md
fileContext
docker_compose.yaml file
Testing
./gradlew test
Documentation
N/A
Known limitations
This will break
typescript-wallet-sdk
. The PR to fixtypescript-wallet-sdk
is stellar/typescript-wallet-sdk#181