-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #40 from IngmarStein/master
Various Docker workflow improvements
- Loading branch information
Showing
1,029 changed files
with
42 additions
and
332,263 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
.venv | ||
.vscode | ||
.dockerignore | ||
.env.example | ||
.git | ||
.github | ||
.gitignore | ||
.pytest_cache | ||
.trunk | ||
.venv | ||
.vscode | ||
Dockerfile | ||
docker-compose.yaml | ||
README.md | ||
tests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,12 +47,17 @@ jobs: | |
latest=true | ||
prefix= | ||
suffix= | ||
- name: Set up QEMU | ||
uses: docker/[email protected] | ||
- name: Set up Docker Buildx | ||
uses: docker/[email protected] | ||
- name: Build and push Docker image | ||
id: push | ||
uses: docker/[email protected] | ||
with: | ||
context: . | ||
push: true | ||
platforms: linux/amd64,linux/arm/v7,linux/arm64,linux/arm64/v8 | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
- name: Generate artifact attestation | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
services: | ||
web: | ||
build: | ||
context: . | ||
dockerfile: Dockerfile | ||
ports: | ||
- "${SERVER_PORT}:8000" # Map port 8000 on the host to port 8000 in the container | ||
- "${PIXLET_SERVE_PORT1}:5100" # 5100 is used for pixlet serve interface during app configuration | ||
- "${PIXLET_SERVE_PORT2}:5101" # user 2 | ||
volumes: | ||
- .:/app # for development | ||
- "/etc/localtime:/etc/localtime:ro" # used to sync docker with host time | ||
environment: | ||
- SERVER_HOSTNAME=${SERVER_HOSTNAME_OR_IP:?SERVER_HOSTNAME_OR_IP MUST BE SET IN .env FILE !!!!!!!!!!!!!!!!!.} | ||
- SERVER_PORT=${SERVER_PORT} | ||
- PIXLET_RENDER_PORT1=${PIXLET_SERVE_PORT1} | ||
- PYTHONUNBUFFERED=1 | ||
- SYSTEM_APPS_REPO=${SYSTEM_APPS_REPO} | ||
- PRODUCTION=${PRODUCTION} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.