mirror of
https://github.com/lone-cloud/prism
synced 2026-06-03 19:54:44 -07:00
configurable ports for docker compose, dont build arm64 for test dev builds
This commit is contained in:
parent
7619355a18
commit
d8a8f35d24
2 changed files with 2 additions and 2 deletions
2
.github/workflows/release-dev.yml
vendored
2
.github/workflows/release-dev.yml
vendored
|
|
@ -26,6 +26,6 @@ jobs:
|
||||||
uses: docker/build-push-action@v6
|
uses: docker/build-push-action@v6
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
platforms: linux/amd64,linux/arm64
|
platforms: linux/amd64
|
||||||
push: true
|
push: true
|
||||||
tags: ghcr.io/lone-cloud/prism:dev
|
tags: ghcr.io/lone-cloud/prism:dev
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ services:
|
||||||
container_name: prism
|
container_name: prism
|
||||||
image: ghcr.io/lone-cloud/prism:latest
|
image: ghcr.io/lone-cloud/prism:latest
|
||||||
ports:
|
ports:
|
||||||
- "8080:8080"
|
- "${PORT:-8080}:${PORT:-8080}"
|
||||||
volumes:
|
volumes:
|
||||||
- prism-data:/app/data
|
- prism-data:/app/data
|
||||||
env_file:
|
env_file:
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue