Skip to content

Releases: codbex/codbex-phoebe

3.37.0

Choose a tag to compare

@github-actions github-actions released this 18 Jun 08:27

codbex-phoebe - 3.37.0

Phoebe is a Web IDE which allows you to write Apache Airflow applications in an efficient way.

Run steps

Start using Docker and released image

Start PostgreSQL

The instance which will be used for Airflow DB or used existing DB instance.

export PHOEBE_AIRFLOW_POSTGRES_USER="postgres"
export PHOEBE_AIRFLOW_POSTGRES_PASS="postgres"
export PHOEBE_AIRFLOW_POSTGRES_DB="postgres"

docker rm -f postgres

docker run --name postgres \
  -e POSTGRES_PASSWORD="$PHOEBE_AIRFLOW_POSTGRES_PASS" \
  -e POSTGRES_USER="$PHOEBE_AIRFLOW_POSTGRES_USER" \
  -e POSTGRES_DB="$PHOEBE_AIRFLOW_POSTGRES_DB" \
  -p 5432:5432 \
  -d postgres:16

Start Docker image

export PHOEBE_IMAGE='ghcr.io/codbex/codbex-phoebe:3.37.0'

docker rm -f phoebe

docker pull "$PHOEBE_IMAGE"

docker run --name phoebe  \
  -p 80:80 \
  -e PHOEBE_AIRFLOW_POSTGRES_USER="$PHOEBE_AIRFLOW_POSTGRES_USER" \
  -e PHOEBE_AIRFLOW_POSTGRES_PASS="$PHOEBE_AIRFLOW_POSTGRES_PASS" \
  -e PHOEBE_AIRFLOW_POSTGRES_HOST="host.docker.internal" \
  -e PHOEBE_AIRFLOW_POSTGRES_DB="$PHOEBE_AIRFLOW_POSTGRES_DB" \
  $PHOEBE_IMAGE

Access points:

Default credentials:

  • user: admin
  • password: admin

3.36.0

Choose a tag to compare

@github-actions github-actions released this 12 Jun 12:09

codbex-phoebe - 3.36.0

Phoebe is a Web IDE which allows you to write Apache Airflow applications in an efficient way.

Run steps

Start using Docker and released image

Start PostgreSQL

The instance which will be used for Airflow DB or used existing DB instance.

export PHOEBE_AIRFLOW_POSTGRES_USER="postgres"
export PHOEBE_AIRFLOW_POSTGRES_PASS="postgres"
export PHOEBE_AIRFLOW_POSTGRES_DB="postgres"

docker rm -f postgres

docker run --name postgres \
  -e POSTGRES_PASSWORD="$PHOEBE_AIRFLOW_POSTGRES_PASS" \
  -e POSTGRES_USER="$PHOEBE_AIRFLOW_POSTGRES_USER" \
  -e POSTGRES_DB="$PHOEBE_AIRFLOW_POSTGRES_DB" \
  -p 5432:5432 \
  -d postgres:16

Start Docker image

export PHOEBE_IMAGE='ghcr.io/codbex/codbex-phoebe:3.36.0'

docker rm -f phoebe

docker pull "$PHOEBE_IMAGE"

docker run --name phoebe  \
  -p 80:80 \
  -e PHOEBE_AIRFLOW_POSTGRES_USER="$PHOEBE_AIRFLOW_POSTGRES_USER" \
  -e PHOEBE_AIRFLOW_POSTGRES_PASS="$PHOEBE_AIRFLOW_POSTGRES_PASS" \
  -e PHOEBE_AIRFLOW_POSTGRES_HOST="host.docker.internal" \
  -e PHOEBE_AIRFLOW_POSTGRES_DB="$PHOEBE_AIRFLOW_POSTGRES_DB" \
  $PHOEBE_IMAGE

Access points:

Default credentials:

  • user: admin
  • password: admin

3.35.0

Choose a tag to compare

@github-actions github-actions released this 12 Jun 11:04

codbex-phoebe - 3.35.0

Phoebe is a Web IDE which allows you to write Apache Airflow applications in an efficient way.

Run steps

Start using Docker and released image

Start PostgreSQL

The instance which will be used for Airflow DB or used existing DB instance.

export PHOEBE_AIRFLOW_POSTGRES_USER="postgres"
export PHOEBE_AIRFLOW_POSTGRES_PASS="postgres"
export PHOEBE_AIRFLOW_POSTGRES_DB="postgres"

docker rm -f postgres

docker run --name postgres \
  -e POSTGRES_PASSWORD="$PHOEBE_AIRFLOW_POSTGRES_PASS" \
  -e POSTGRES_USER="$PHOEBE_AIRFLOW_POSTGRES_USER" \
  -e POSTGRES_DB="$PHOEBE_AIRFLOW_POSTGRES_DB" \
  -p 5432:5432 \
  -d postgres:16

Start Docker image

export PHOEBE_IMAGE='ghcr.io/codbex/codbex-phoebe:3.35.0'

docker rm -f phoebe

docker pull "$PHOEBE_IMAGE"

docker run --name phoebe  \
  -p 80:80 \
  -e PHOEBE_AIRFLOW_POSTGRES_USER="$PHOEBE_AIRFLOW_POSTGRES_USER" \
  -e PHOEBE_AIRFLOW_POSTGRES_PASS="$PHOEBE_AIRFLOW_POSTGRES_PASS" \
  -e PHOEBE_AIRFLOW_POSTGRES_HOST="host.docker.internal" \
  -e PHOEBE_AIRFLOW_POSTGRES_DB="$PHOEBE_AIRFLOW_POSTGRES_DB" \
  $PHOEBE_IMAGE

Access points:

Default credentials:

  • user: admin
  • password: admin

3.34.0

Choose a tag to compare

@github-actions github-actions released this 08 Jun 11:57

codbex-phoebe - 3.34.0

Phoebe is a Web IDE which allows you to write Apache Airflow applications in an efficient way.

Run steps

Start using Docker and released image

Start PostgreSQL

The instance which will be used for Airflow DB or used existing DB instance.

export PHOEBE_AIRFLOW_POSTGRES_USER="postgres"
export PHOEBE_AIRFLOW_POSTGRES_PASS="postgres"
export PHOEBE_AIRFLOW_POSTGRES_DB="postgres"

docker rm -f postgres

docker run --name postgres \
  -e POSTGRES_PASSWORD="$PHOEBE_AIRFLOW_POSTGRES_PASS" \
  -e POSTGRES_USER="$PHOEBE_AIRFLOW_POSTGRES_USER" \
  -e POSTGRES_DB="$PHOEBE_AIRFLOW_POSTGRES_DB" \
  -p 5432:5432 \
  -d postgres:16

Start Docker image

export PHOEBE_IMAGE='ghcr.io/codbex/codbex-phoebe:3.34.0'

docker rm -f phoebe

docker pull "$PHOEBE_IMAGE"

docker run --name phoebe  \
  -p 80:80 \
  -e PHOEBE_AIRFLOW_POSTGRES_USER="$PHOEBE_AIRFLOW_POSTGRES_USER" \
  -e PHOEBE_AIRFLOW_POSTGRES_PASS="$PHOEBE_AIRFLOW_POSTGRES_PASS" \
  -e PHOEBE_AIRFLOW_POSTGRES_HOST="host.docker.internal" \
  -e PHOEBE_AIRFLOW_POSTGRES_DB="$PHOEBE_AIRFLOW_POSTGRES_DB" \
  $PHOEBE_IMAGE

Access points:

Default credentials:

  • user: admin
  • password: admin

3.33.0

Choose a tag to compare

@github-actions github-actions released this 08 Jun 07:44

codbex-phoebe - 3.33.0

Phoebe is a Web IDE which allows you to write Apache Airflow applications in an efficient way.

Run steps

Start using Docker and released image

Start PostgreSQL

The instance which will be used for Airflow DB or used existing DB instance.

export PHOEBE_AIRFLOW_POSTGRES_USER="postgres"
export PHOEBE_AIRFLOW_POSTGRES_PASS="postgres"
export PHOEBE_AIRFLOW_POSTGRES_DB="postgres"

docker rm -f postgres

docker run --name postgres \
  -e POSTGRES_PASSWORD="$PHOEBE_AIRFLOW_POSTGRES_PASS" \
  -e POSTGRES_USER="$PHOEBE_AIRFLOW_POSTGRES_USER" \
  -e POSTGRES_DB="$PHOEBE_AIRFLOW_POSTGRES_DB" \
  -p 5432:5432 \
  -d postgres:16

Start Docker image

export PHOEBE_IMAGE='ghcr.io/codbex/codbex-phoebe:3.33.0'

docker rm -f phoebe

docker pull "$PHOEBE_IMAGE"

docker run --name phoebe  \
  -p 80:80 \
  -e PHOEBE_AIRFLOW_POSTGRES_USER="$PHOEBE_AIRFLOW_POSTGRES_USER" \
  -e PHOEBE_AIRFLOW_POSTGRES_PASS="$PHOEBE_AIRFLOW_POSTGRES_PASS" \
  -e PHOEBE_AIRFLOW_POSTGRES_HOST="host.docker.internal" \
  -e PHOEBE_AIRFLOW_POSTGRES_DB="$PHOEBE_AIRFLOW_POSTGRES_DB" \
  $PHOEBE_IMAGE

Access points:

Default credentials:

  • user: admin
  • password: admin

3.32.0

Choose a tag to compare

@github-actions github-actions released this 04 Jun 13:34

codbex-phoebe - 3.32.0

Phoebe is a Web IDE which allows you to write Apache Airflow applications in an efficient way.

Run steps

Start using Docker and released image

Start PostgreSQL

The instance which will be used for Airflow DB or used existing DB instance.

export PHOEBE_AIRFLOW_POSTGRES_USER="postgres"
export PHOEBE_AIRFLOW_POSTGRES_PASS="postgres"
export PHOEBE_AIRFLOW_POSTGRES_DB="postgres"

docker rm -f postgres

docker run --name postgres \
  -e POSTGRES_PASSWORD="$PHOEBE_AIRFLOW_POSTGRES_PASS" \
  -e POSTGRES_USER="$PHOEBE_AIRFLOW_POSTGRES_USER" \
  -e POSTGRES_DB="$PHOEBE_AIRFLOW_POSTGRES_DB" \
  -p 5432:5432 \
  -d postgres:16

Start Docker image

export PHOEBE_IMAGE='ghcr.io/codbex/codbex-phoebe:3.32.0'

docker rm -f phoebe

docker pull "$PHOEBE_IMAGE"

docker run --name phoebe  \
  -p 80:80 \
  -e PHOEBE_AIRFLOW_POSTGRES_USER="$PHOEBE_AIRFLOW_POSTGRES_USER" \
  -e PHOEBE_AIRFLOW_POSTGRES_PASS="$PHOEBE_AIRFLOW_POSTGRES_PASS" \
  -e PHOEBE_AIRFLOW_POSTGRES_HOST="host.docker.internal" \
  -e PHOEBE_AIRFLOW_POSTGRES_DB="$PHOEBE_AIRFLOW_POSTGRES_DB" \
  $PHOEBE_IMAGE

Access points:

Default credentials:

  • user: admin
  • password: admin

3.31.0

Choose a tag to compare

@github-actions github-actions released this 24 Apr 11:56

codbex-phoebe - 3.31.0

Phoebe is a Web IDE which allows you to write Apache Airflow applications in an efficient way.

Run steps

Start using Docker and released image

Start PostgreSQL

The instance which will be used for Airflow DB or used existing DB instance.

export PHOEBE_AIRFLOW_POSTGRES_USER="postgres"
export PHOEBE_AIRFLOW_POSTGRES_PASS="postgres"
export PHOEBE_AIRFLOW_POSTGRES_DB="postgres"

docker rm -f postgres

docker run --name postgres \
  -e POSTGRES_PASSWORD="$PHOEBE_AIRFLOW_POSTGRES_PASS" \
  -e POSTGRES_USER="$PHOEBE_AIRFLOW_POSTGRES_USER" \
  -e POSTGRES_DB="$PHOEBE_AIRFLOW_POSTGRES_DB" \
  -p 5432:5432 \
  -d postgres:16

Start Docker image

export PHOEBE_IMAGE='ghcr.io/codbex/codbex-phoebe:3.31.0'

docker rm -f phoebe

docker pull "$PHOEBE_IMAGE"

docker run --name phoebe  \
  -p 80:80 \
  -e PHOEBE_AIRFLOW_POSTGRES_USER="$PHOEBE_AIRFLOW_POSTGRES_USER" \
  -e PHOEBE_AIRFLOW_POSTGRES_PASS="$PHOEBE_AIRFLOW_POSTGRES_PASS" \
  -e PHOEBE_AIRFLOW_POSTGRES_HOST="host.docker.internal" \
  -e PHOEBE_AIRFLOW_POSTGRES_DB="$PHOEBE_AIRFLOW_POSTGRES_DB" \
  $PHOEBE_IMAGE

Access points:

Default credentials:

  • user: admin
  • password: admin

3.30.0

Choose a tag to compare

@github-actions github-actions released this 07 Apr 09:04

codbex-phoebe - 3.30.0

Phoebe is a Web IDE which allows you to write Apache Airflow applications in an efficient way.

Run steps

Start using Docker and released image

Start PostgreSQL

The instance which will be used for Airflow DB or used existing DB instance.

export PHOEBE_AIRFLOW_POSTGRES_USER="postgres"
export PHOEBE_AIRFLOW_POSTGRES_PASS="postgres"
export PHOEBE_AIRFLOW_POSTGRES_DB="postgres"

docker rm -f postgres

docker run --name postgres \
  -e POSTGRES_PASSWORD="$PHOEBE_AIRFLOW_POSTGRES_PASS" \
  -e POSTGRES_USER="$PHOEBE_AIRFLOW_POSTGRES_USER" \
  -e POSTGRES_DB="$PHOEBE_AIRFLOW_POSTGRES_DB" \
  -p 5432:5432 \
  -d postgres:16

Start Docker image

export PHOEBE_IMAGE='ghcr.io/codbex/codbex-phoebe:3.30.0'

docker rm -f phoebe

docker pull "$PHOEBE_IMAGE"

docker run --name phoebe  \
  -p 80:80 \
  -e PHOEBE_AIRFLOW_POSTGRES_USER="$PHOEBE_AIRFLOW_POSTGRES_USER" \
  -e PHOEBE_AIRFLOW_POSTGRES_PASS="$PHOEBE_AIRFLOW_POSTGRES_PASS" \
  -e PHOEBE_AIRFLOW_POSTGRES_HOST="host.docker.internal" \
  -e PHOEBE_AIRFLOW_POSTGRES_DB="$PHOEBE_AIRFLOW_POSTGRES_DB" \
  $PHOEBE_IMAGE

Access points:

Default credentials:

  • user: admin
  • password: admin

3.29.0

Choose a tag to compare

@github-actions github-actions released this 30 Mar 06:41

codbex-phoebe - 3.29.0

Phoebe is a Web IDE which allows you to write Apache Airflow applications in an efficient way.

Run steps

Start using Docker and released image

Start PostgreSQL

The instance which will be used for Airflow DB or used existing DB instance.

export PHOEBE_AIRFLOW_POSTGRES_USER="postgres"
export PHOEBE_AIRFLOW_POSTGRES_PASS="postgres"
export PHOEBE_AIRFLOW_POSTGRES_DB="postgres"

docker rm -f postgres

docker run --name postgres \
  -e POSTGRES_PASSWORD="$PHOEBE_AIRFLOW_POSTGRES_PASS" \
  -e POSTGRES_USER="$PHOEBE_AIRFLOW_POSTGRES_USER" \
  -e POSTGRES_DB="$PHOEBE_AIRFLOW_POSTGRES_DB" \
  -p 5432:5432 \
  -d postgres:16

Start Docker image

export PHOEBE_IMAGE='ghcr.io/codbex/codbex-phoebe:3.29.0'

docker rm -f phoebe

docker pull "$PHOEBE_IMAGE"

docker run --name phoebe  \
  -p 80:80 \
  -e PHOEBE_AIRFLOW_POSTGRES_USER="$PHOEBE_AIRFLOW_POSTGRES_USER" \
  -e PHOEBE_AIRFLOW_POSTGRES_PASS="$PHOEBE_AIRFLOW_POSTGRES_PASS" \
  -e PHOEBE_AIRFLOW_POSTGRES_HOST="host.docker.internal" \
  -e PHOEBE_AIRFLOW_POSTGRES_DB="$PHOEBE_AIRFLOW_POSTGRES_DB" \
  $PHOEBE_IMAGE

Access points:

Default credentials:

  • user: admin
  • password: admin

3.28.0

Choose a tag to compare

@github-actions github-actions released this 17 Mar 08:13

codbex-phoebe - 3.28.0

Phoebe is a Web IDE which allows you to write Apache Airflow applications in an efficient way.

Run steps

Start using Docker and released image

Start PostgreSQL

The instance which will be used for Airflow DB or used existing DB instance.

export PHOEBE_AIRFLOW_POSTGRES_USER="postgres"
export PHOEBE_AIRFLOW_POSTGRES_PASS="postgres"
export PHOEBE_AIRFLOW_POSTGRES_DB="postgres"

docker rm -f postgres

docker run --name postgres \
  -e POSTGRES_PASSWORD="$PHOEBE_AIRFLOW_POSTGRES_PASS" \
  -e POSTGRES_USER="$PHOEBE_AIRFLOW_POSTGRES_USER" \
  -e POSTGRES_DB="$PHOEBE_AIRFLOW_POSTGRES_DB" \
  -p 5432:5432 \
  -d postgres:16

Start Docker image

export PHOEBE_IMAGE='ghcr.io/codbex/codbex-phoebe:3.28.0'

docker rm -f phoebe

docker pull "$PHOEBE_IMAGE"

docker run --name phoebe  \
  -p 80:80 \
  -e PHOEBE_AIRFLOW_POSTGRES_USER="$PHOEBE_AIRFLOW_POSTGRES_USER" \
  -e PHOEBE_AIRFLOW_POSTGRES_PASS="$PHOEBE_AIRFLOW_POSTGRES_PASS" \
  -e PHOEBE_AIRFLOW_POSTGRES_HOST="host.docker.internal" \
  -e PHOEBE_AIRFLOW_POSTGRES_DB="$PHOEBE_AIRFLOW_POSTGRES_DB" \
  $PHOEBE_IMAGE

Access points:

Default credentials:

  • user: admin
  • password: admin