diff --git a/src/components/Install/index.tsx b/src/components/Install/index.tsx index c391f979ae5..a94230e47b8 100644 --- a/src/components/Install/index.tsx +++ b/src/components/Install/index.tsx @@ -8,7 +8,7 @@ import { copy } from '../../lib/utils' import { ReactComponent as CopyIcon } from './copyIcon.svg' const installText = - 'docker run --publish 7080:7080 --publish 127.0.0.1:3370:3370 --rm --volume ~/.sourcegraph/config:/etc/sourcegraph --volume ~/.sourcegraph/data:/var/opt/sourcegraph sourcegraph/server:5.0.6' + 'docker run --publish 7080:7080 --publish 127.0.0.1:3370:3370 --rm --volume ~/.sourcegraph/config:/etc/sourcegraph --volume ~/.sourcegraph/data:/var/opt/sourcegraph sourcegraph/server:5.1.0' export const Install: FunctionComponent = () => { const [copied, setCopied] = useState(false)