fix: spelling

This commit is contained in:
Ben Allfree 2023-11-12 22:01:44 +00:00
parent 673d330ad5
commit 63bd7637c4
3 changed files with 4 additions and 4 deletions

View File

@ -112,7 +112,7 @@ https://app.pockethost.lvh.me
login: `user@pockethost.lvh.me`
password: `password`
The user `user@pockethost.lvh.me` owns `instance1` and `instnace2`, each which is running in its own region on separate edge servers.
The user `user@pockethost.lvh.me` owns `instance1` and `instance2`, each which is running in its own region on separate edge servers.
That's it! You can control all this and much more from the `.env-template` file. It's fully documented, but here it is again just in case.

View File

@ -271,10 +271,10 @@ export const instanceService = mkSingleton(
} catch (e) {
warn(`Error spawning: ${e}`)
userInstanceLogger.error(
`Could not launch PocketBase ${instance.version}. Please review your instnace logs at https://app.pockethost.io/app/instances/${instance.id} and join us in the Discord support channel https://discord.gg/nVTxCMEcGT.`,
`Could not launch PocketBase ${instance.version}. Please review your instance logs at https://app.pockethost.io/app/instances/${instance.id} and join us in the Discord support channel https://discord.gg/nVTxCMEcGT.`,
)
throw new Error(
`Could not launch PocketBase ${instance.version}. Please review your instnace logs at https://app.pockethost.io/app/instances/${instance.id} and join us in the Discord support channel https://discord.gg/nVTxCMEcGT.`,
`Could not launch PocketBase ${instance.version}. Please review your instance logs at https://app.pockethost.io/app/instances/${instance.id} and join us in the Discord support channel https://discord.gg/nVTxCMEcGT.`,
)
}
})()

View File

@ -50,7 +50,7 @@ export const createPocketbaseService = async (
const _serviceLogger = LoggerService().create('PocketbaseService')
const { dbg, error, warn, abort } = _serviceLogger
dbg(`Building docker image for instnace`)
dbg(`Building docker image for instance`)
await buildImage(`Dockerfile`, INSTANCE_IMAGE_NAME)
const { getLatestVersion, getVersion } =