Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion commands/db.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ async function handleDBCommandOptions(options) {
}

if (!options.name) {
options.name = `sqledge-${options.port}`;
options.name = `sqlserver-${options.port}`;
}
}

Expand Down
2 changes: 1 addition & 1 deletion commands/watch.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ program
.action(async () => {
await checkPrerequisites([checkDotnetExists]);

await ensureDbIsRunng();
// await ensureDbIsRunng();

const currentDir = process.cwd();
const fileName = 'launchSettings.json';
Expand Down
2 changes: 1 addition & 1 deletion helpers/docker.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export function generateDBDockerCompose({ port, name }) {
# This file was generated using the opti cli tool
services:
sqledge:
image: mcr.microsoft.com/azure-sql-edge
image: mcr.microsoft.com/mssql/server:2025-latest
container_name: ${name}
environment:
- ACCEPT_EULA=1
Expand Down
2 changes: 1 addition & 1 deletion services/bacpac.service.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export async function importBacpac(
await runShellCommand('opti db up');
await waitForContainerLogString(
azuresqlContainerName,
'EdgeTelemetry starting up'
'Recovery is complete'
);
printer.success('Database started successfully!');
}
Expand Down