🚧 WIP: docker-compose + github action

pull/789/head
Philipp Dormann 2021-09-16 22:52:16 +02:00
parent f7ff90e93e
commit 78bc17ce3b
No known key found for this signature in database
GPG Key ID: 3BB9ADD52DCA4314
3 changed files with 30 additions and 0 deletions

View File

@ -40,3 +40,22 @@ jobs:
docker push ghcr.io/$GITHUB_ACTOR/umami:postgresql-latest
docker push ghcr.io/$GITHUB_ACTOR/umami:mysql-$(echo $GITHUB_SHA | head -c7)
docker push ghcr.io/$GITHUB_ACTOR/umami:mysql-latest
#
- name: Build sqlite container image
run: |
docker build --build-arg DATABASE_TYPE=sqlite \
--tag ghcr.io/$GITHUB_ACTOR/umami:sqlite-$(echo $GITHUB_SHA | head -c7) \
--tag ghcr.io/$GITHUB_ACTOR/umami:sqlite-latest \
.
- name: Docker login
run: >-
echo "${{ secrets.GITHUB_TOKEN }}"
| docker login -u "${{ github.actor }}" --password-stdin ghcr.io
- name: Push image to GitHub
run: |
docker push ghcr.io/$GITHUB_ACTOR/umami:sqlite-$(echo $GITHUB_SHA | head -c7)
docker push ghcr.io/$GITHUB_ACTOR/umami:sqlite-latest
docker push ghcr.io/$GITHUB_ACTOR/umami:mysql-$(echo $GITHUB_SHA | head -c7)
docker push ghcr.io/$GITHUB_ACTOR/umami:mysql-latest

1
.gitignore vendored
View File

@ -37,3 +37,4 @@ yarn-error.log*
.env.development.local
.env.test.local
.env.production.local
prisma/db

10
docker-compose-sqlite.yml Normal file
View File

@ -0,0 +1,10 @@
version: '3'
services:
umami:
image: ghcr.io/mikecao/umami:sqlite-latest
ports:
- "3000:3000"
environment:
DATABASE_TYPE: sqlite
HASH_SALT: replace-me-with-a-random-string
restart: always