From 7a6d09a28e6099d17ac4f3547c148224fd77a10e Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 31 Aug 2018 09:16:01 -0400 Subject: [PATCH] refs and installation complete message --- util/Setup/Program.cs | 17 +++++++++++++++-- util/Setup/Templates/DockerCompose.hbs | 5 ++++- 2 files changed, 19 insertions(+), 3 deletions(-) diff --git a/util/Setup/Program.cs b/util/Setup/Program.cs index b0e6150a59..cc849726da 100644 --- a/util/Setup/Program.cs +++ b/util/Setup/Program.cs @@ -89,12 +89,25 @@ namespace Bit.Setup dockerComposeBuilder.BuildForInstaller(); _context.SaveConfiguration(); - - Console.WriteLine("If you need to make additional configuration changes, you can modify\n" + + + Console.WriteLine("\nInstallation complete"); + + Console.WriteLine("\nIf you need to make additional configuration changes, you can modify\n" + "the settings in `{0}` and then run {1}", _context.HostOS == "win" ? ".\\bwdata\\config.yml" : "./bwdata/config.yml", _context.HostOS == "win" ? "`.\\bitwarden.ps1 -rebuild` or `.\\bitwarden.ps1 -update`" : "`./bitwarden.sh rebuild` or `./bitwarden.sh update`"); + + Console.WriteLine("\nNext steps, run:"); + if(_context.HostOS == "win") + { + Console.WriteLine("`.\\bitwarden.ps1 -start` and then `.\\bitwarden.ps1 -updatedb`"); + } + else + { + Console.WriteLine("`./bitwarden.sh start` and then `./bitwarden.sh updatedb`"); + } + Console.WriteLine(string.Empty); } private static void Update() diff --git a/util/Setup/Templates/DockerCompose.hbs b/util/Setup/Templates/DockerCompose.hbs index 6969067379..4e3b938dfa 100644 --- a/util/Setup/Templates/DockerCompose.hbs +++ b/util/Setup/Templates/DockerCompose.hbs @@ -1,5 +1,8 @@ # -# Reference: https://docs.docker.com/compose/compose-file/ +# Useful references: +# https://docs.docker.com/compose/compose-file/ +# https://docs.docker.com/compose/reference/overview/#use--f-to-specify-name-and-path-of-one-or-more-compose-files +# https://docs.docker.com/compose/reference/envvars/ # ######################################################################### # WARNING: This file is generated. Do not make changes to this file. #