Skip to content

Commit b76e056

Browse files
committed
change frontend clashing default port
1 parent ab7f958 commit b76e056

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,5 @@ keys.json
1616
node_modules
1717
package-lock.json
1818
generated
19-
*.env
19+
*.env
20+
temp

subnet/deployment-generator/src/config_gen.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const config = {
2323
// observer: (process.env.VERSION_OBSERVER || 'latest'),
2424
relayer: (process.env.VERSION_RELAYER || 'v0.2.2'),
2525
stats: (process.env.VERSION_STATS || 'v0.1.8'),
26-
frontend: (process.env.VERSION_FRONTEND || 'v0.1.9'),
26+
frontend: (process.env.VERSION_FRONTEND || 'v0.1.10'),
2727
csc: (process.env.VERSION_CSC || 'v0.1.1'),
2828
// zero: (process.env.VERSION_ZERO || 'v0.1.1')
2929
},

subnet/deployment-generator/src/gen_compose.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ function genServices (machine_id) {
7171
restart: 'always',
7272
env_file: config_path, // not used directly (injected via volume) but required to trigger restart if common.env changes
7373
volumes: [`${config_path}:/app/.env.local`],
74-
ports: ['5000:5000'],
74+
ports: ['5555:5555'],
7575
profiles: [machine]
7676
}
7777
const relayer = {

0 commit comments

Comments
 (0)