Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
cirolosapio committed Oct 25, 2023
1 parent ab02b83 commit 82af041
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 1 deletion.
7 changes: 7 additions & 0 deletions src/alpine-openssh/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -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"
}
9 changes: 9 additions & 0 deletions src/alpine-openssh/install.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/sh

set -e

echo "Activating feature 'alpine-openssh'"

apk --no-cache add openssh

echo 'Done!'
7 changes: 7 additions & 0 deletions src/alpine-pgsql-client/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -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"
}
9 changes: 9 additions & 0 deletions src/alpine-pgsql-client/install.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/sh

set -e

echo "Activating feature 'alpine-pgsql-client'"

apk --no-cache add postgresql-client

echo 'Done!'
2 changes: 1 addition & 1 deletion src/alpine-php-pgsql/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 82af041

Please sign in to comment.