Skip to content

Commit 7821abb

Browse files
feat: update docker-compose files
1 parent d91e61e commit 7821abb

File tree

6 files changed

+18
-12
lines changed

6 files changed

+18
-12
lines changed

templates/angular-example/docker-compose.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ services:
1111
volumes:
1212
# Persistent volume to store internal state
1313
- juno_skylab:/juno/.juno
14-
# Local dev config file to customize Satellite behavior
15-
- ./juno.dev.config.js:/juno/juno.dev.config.js
14+
# Your Juno configuration file.
15+
# Notably used to provide your development Satellite ID to the emulator.
16+
- ./juno.config.mjs:/juno/juno.config.mjs
1617
# Shared folder for deploying and hot-reloading serverless functions
1718
# For example, when building functions in TypeScript, the output `.mjs` files are placed here.
1819
# The container then bundles them into your Satellite WASM (also placed here),

templates/nextjs-example/docker-compose.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ services:
1111
volumes:
1212
# Persistent volume to store internal state
1313
- juno_skylab:/juno/.juno
14-
# Local dev config file to customize Satellite behavior
15-
- ./juno.dev.config.ts:/juno/juno.dev.config.ts
14+
# Your Juno configuration file.
15+
# Notably used to provide your development Satellite ID to the emulator.
16+
- ./juno.config.mjs:/juno/juno.config.mjs
1617
# Shared folder for deploying and hot-reloading serverless functions
1718
# For example, when building functions in TypeScript, the output `.mjs` files are placed here.
1819
# The container then bundles them into your Satellite WASM (also placed here),

templates/react-example/docker-compose.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ services:
1111
volumes:
1212
# Persistent volume to store internal state
1313
- juno_skylab:/juno/.juno
14-
# Local dev config file to customize Satellite behavior
15-
- ./juno.dev.config.js:/juno/juno.dev.config.js
14+
# Your Juno configuration file.
15+
# Notably used to provide your development Satellite ID to the emulator.
16+
- ./juno.config.mjs:/juno/juno.config.mjs
1617
# Shared folder for deploying and hot-reloading serverless functions
1718
# For example, when building functions in TypeScript, the output `.mjs` files are placed here.
1819
# The container then bundles them into your Satellite WASM (also placed here),

templates/sveltekit-example/docker-compose.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ services:
1111
volumes:
1212
# Persistent volume to store internal state
1313
- juno_skylab:/juno/.juno
14-
# Local dev config file to customize Satellite behavior
15-
- ./juno.dev.config.ts:/juno/juno.dev.config.ts
14+
# Your Juno configuration file.
15+
# Notably used to provide your development Satellite ID to the emulator.
16+
- ./juno.config.ts:/juno/juno.config.ts
1617
# Shared folder for deploying and hot-reloading serverless functions
1718
# For example, when building functions in TypeScript, the output `.mjs` files are placed here.
1819
# The container then bundles them into your Satellite WASM (also placed here),

templates/vanilla-js-example/docker-compose.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ services:
1111
volumes:
1212
# Persistent volume to store internal state
1313
- juno_skylab:/juno/.juno
14-
# Local dev config file to customize Satellite behavior
15-
- ./juno.dev.config.js:/juno/juno.dev.config.js
14+
# Your Juno configuration file.
15+
# Notably used to provide your development Satellite ID to the emulator.
16+
- ./juno.config.mjs:/juno/juno.config.mjs
1617
# Shared folder for deploying and hot-reloading serverless functions
1718
# For example, when building functions in TypeScript, the output `.mjs` files are placed here.
1819
# The container then bundles them into your Satellite WASM (also placed here),

templates/vue-example/docker-compose.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ services:
1111
volumes:
1212
# Persistent volume to store internal state
1313
- juno_skylab:/juno/.juno
14-
# Local dev config file to customize Satellite behavior
15-
- ./juno.dev.config.ts:/juno/juno.dev.config.ts
14+
# Your Juno configuration file.
15+
# Notably used to provide your development Satellite ID to the emulator.
16+
- ./juno.config.ts:/juno/juno.config.ts
1617
# Shared folder for deploying and hot-reloading serverless functions
1718
# For example, when building functions in TypeScript, the output `.mjs` files are placed here.
1819
# The container then bundles them into your Satellite WASM (also placed here),

0 commit comments

Comments
 (0)