diff --git a/src/alpine-openssh/devcontainer-feature.json b/src/alpine-openssh/devcontainer-feature.json new file mode 100644 index 0000000..18680b4 --- /dev/null +++ b/src/alpine-openssh/devcontainer-feature.json @@ -0,0 +1,7 @@ +{ + "name": "alpine-openssh", + "id": "alpine-openssh", + "version": "0.0.1", + "description": "Installs openssh on alpine", + "documentationURL": "https://github.com/cirolosapio/devcontainers-features/tree/main/src/alpine-openssh" +} \ No newline at end of file diff --git a/src/alpine-openssh/install.sh b/src/alpine-openssh/install.sh new file mode 100644 index 0000000..cdd30b4 --- /dev/null +++ b/src/alpine-openssh/install.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +set -e + +echo "Activating feature 'alpine-openssh'" + +apk --no-cache add openssh + +echo 'Done!' \ No newline at end of file diff --git a/src/alpine-pgsql-client/devcontainer-feature.json b/src/alpine-pgsql-client/devcontainer-feature.json new file mode 100644 index 0000000..4455c3c --- /dev/null +++ b/src/alpine-pgsql-client/devcontainer-feature.json @@ -0,0 +1,7 @@ +{ + "name": "alpine-pgsql-client", + "id": "alpine-pgsql-client", + "version": "0.0.1", + "description": "Installs pgsql client on alpine", + "documentationURL": "https://github.com/cirolosapio/devcontainers-features/tree/main/src/alpine-pgsql-client" +} \ No newline at end of file diff --git a/src/alpine-pgsql-client/install.sh b/src/alpine-pgsql-client/install.sh new file mode 100644 index 0000000..e9eb3aa --- /dev/null +++ b/src/alpine-pgsql-client/install.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +set -e + +echo "Activating feature 'alpine-pgsql-client'" + +apk --no-cache add postgresql-client + +echo 'Done!' \ No newline at end of file diff --git a/src/alpine-php-pgsql/install.sh b/src/alpine-php-pgsql/install.sh index 70088a6..c25064c 100644 --- a/src/alpine-php-pgsql/install.sh +++ b/src/alpine-php-pgsql/install.sh @@ -2,7 +2,7 @@ set -e -echo "Activating feature 'alpine-deno'" +echo "Activating feature 'alpine-php-pgsql'" apk --no-cache add postgresql-dev docker-php-ext-install pdo_pgsql