Compare commits

4 Commits

7 changed files with 10 additions and 10 deletions

4
Cargo.lock generated
View File

@@ -1,10 +1,10 @@
# This file is automatically @generated by Cargo. # This file is automatically @generated by Cargo.
# It is not intended for manual editing. # It is not intended for manual editing.
version = 3 version = 4
[[package]] [[package]]
name = "ahab" name = "ahab"
version = "0.3.0" version = "0.4.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"clap", "clap",

View File

@@ -2,7 +2,7 @@
name = "ahab" name = "ahab"
description = "docker cli wrapper" description = "docker cli wrapper"
readme = "README.md" readme = "README.md"
version = "0.3.1" version = "0.4.0"
edition = "2021" edition = "2021"
license = "MIT" license = "MIT"
authors = ["Matej Janežič <janezic.mj@gmail.com>"] authors = ["Matej Janežič <janezic.mj@gmail.com>"]

View File

@@ -21,5 +21,5 @@ Completion files are generated **during build process** in `target/*/build/*/out
Currently `ahab` respects three environment variables. Currently `ahab` respects three environment variables.
- `COMPOSE_FILE`: control which docker-compose file is used - defaults to `docker/local/docker-compose.yaml` - `COMPOSE_FILE`: control which docker-compose file is used - defaults to `docker/local/docker-compose.yaml`
- `AHAB_DJANGO_CONTAINER`: control which compose service is used for sending django commands - defaults to `appserver` - `AHAB_DJANGO_CONTAINER`: control which compose service is used for sending django commands - defaults to `django`
- `AHAB_POSTGRES_CONTAINER`: control which compose service is used for sending postgres commands - defaults to `postgresdb` - `AHAB_POSTGRES_CONTAINER`: control which compose service is used for sending postgres commands - defaults to `db`

View File

@@ -20,7 +20,7 @@ pub enum DockerCompose {
rest: Vec<String>, rest: Vec<String>,
}, },
/// Print services /// Print services
Ps, Ps,
/// Stop, build and start containers. /// Stop, build and start containers.

View File

@@ -34,8 +34,7 @@ fn main() -> Result<()> {
cli::Django::Test => scripts::django::test(), cli::Django::Test => scripts::django::test(),
}, },
cli::Commands::Postgres { command } => { cli::Commands::Postgres { command } => {
let db_container = let db_container = std::env::var("AHAB_POSTGRES_CONTAINER").unwrap_or("db".to_string());
std::env::var("AHAB_POSTGRES_CONTAINER").unwrap_or("postgresdb".to_string());
match command { match command {
cli::Postgres::Import { path } => scripts::postgres::import(&db_container, &path), cli::Postgres::Import { path } => scripts::postgres::import(&db_container, &path),
cli::Postgres::Dump { path } => scripts::postgres::dump(&db_container, &path), cli::Postgres::Dump { path } => scripts::postgres::dump(&db_container, &path),

View File

@@ -55,7 +55,7 @@ pub fn make_command(app: &PathBuf, name: &str) -> Result<()> {
} }
pub fn manage(rest: &[String]) -> Result<()> { pub fn manage(rest: &[String]) -> Result<()> {
let container = env::var("AHAB_DJANGO_CONTAINER").unwrap_or("appserver".to_string()); let container = env::var("AHAB_DJANGO_CONTAINER").unwrap_or("django".to_string());
let joined = rest.join(" "); let joined = rest.join(" ");
let command = format!("run --rm {container} python manage.py {joined}"); let command = format!("run --rm {container} python manage.py {joined}");
CommandBuilder::docker_compose().args(&command).exec() CommandBuilder::docker_compose().args(&command).exec()

View File

@@ -12,7 +12,7 @@ pub fn down() -> Result<()> {
} }
pub fn exec(rest: &[String]) -> Result<()> { pub fn exec(rest: &[String]) -> Result<()> {
let container = std::env::var("AHAB_DJANGO_CONTAINER").unwrap_or("appserver".to_string()); let container = std::env::var("AHAB_DJANGO_CONTAINER").unwrap_or("django".to_string());
CommandBuilder::docker_compose() CommandBuilder::docker_compose()
.args("exec") .args("exec")
.args(&container) .args(&container)
@@ -26,6 +26,7 @@ pub fn ps() -> Result<()> {
/// Start containers via `docker compose start`. Optionally pass containers to be started. /// Start containers via `docker compose start`. Optionally pass containers to be started.
/// ``` /// ```
/// # use ahab::scripts::docker_compose::start;
/// start(None); /// start(None);
/// ``` /// ```
/// is roughly the same as /// is roughly the same as