Hello
I’m absolutely pumped to announce that Juno developers can now build locally and run E2E tests against a new Docker image.
This container performs the following tasks:
- It starts a local replica and icx-proxy
- A custom CLI deploys Internet Identity and Juno’s Satellite
- It applies a configuration that the dev can define with a config file
- That’s it!
So basically, you run docker compose up
and you are all set!
docker-compose.yml
:
services:
juno-satellite:
image: junobuild/satellite:latest
ports:
- 5987:5987
volumes:
- astro_dapp:/juno/.juno
- ./juno.dev.json:/juno/juno.dev.json
volumes:
astro_dapp:
A config file to apply settings to the Satellite smart contract:
{
"satellite": {
"collections": {
"db": [
{
"collection": "counter",
"read": "public",
"write": "public",
"memory": "stable"
}
]
}
}
}
And basically just setting a variable to the unique initialization function:
await initJuno({
satelliteId: import.meta.env.PUBLIC_SATELLITE_ID,
container: true,
});
Blog post: https://juno.build/blog/local-development
Documentation: https://juno.build/docs/miscellaneous/local-development
Repo: https://github.com/junobuild/juno-docker