Initial Commit

This commit is contained in:
Luke Hagar
2023-05-09 23:03:26 -05:00
parent 579eead304
commit 5034a4f661
2 changed files with 31 additions and 1 deletions

29
.github/workflows/build-image.yaml vendored Normal file
View File

@@ -0,0 +1,29 @@
name: Build Docker Image
on:
push:
branches:
- "main"
workflow_dispatch:
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v4
with:
push: true
tags: lukehagar/pocketbase:latest

View File

@@ -1,6 +1,7 @@
FROM alpine:latest
ARG PB_VERSION=0.15.3
ENV PB_ENCRYPTION_KEY
RUN apk add --no-cache \
unzip \
@@ -13,4 +14,4 @@ RUN unzip /tmp/pb.zip -d /pb/
EXPOSE 8080
# start PocketBase
CMD ["/pb/pocketbase", "serve", "--http=0.0.0.0:8080"]
CMD ["/pb/pocketbase", "serve", "--http=0.0.0.0:8080", "--encryptionEnv=PB_ENCRYPTION_KEY"]