boxgenerator/docker-compose.yml aktualisiert

This commit is contained in:
2025-11-20 15:43:04 +00:00
parent 106204770b
commit 24e057152b

View File

@@ -3,10 +3,10 @@ services:
image: fedora:latest image: fedora:latest
container_name: ${EXTERNAL_NAME} container_name: ${EXTERNAL_NAME}
ports: ports:
- "${EXTERNAL_PORT}:8000" - "${EXTERNAL_PORT:-8000}:8000"
environment: environment:
BUILD_BRANCH: master BUILD_BRANCH: ${BUILD_BRANCH:-master}
BUILD_REPO: https://github.com/florianfesti/boxes.git BUILD_REPO: ${BUILD_REPO:-https://github.com/florianfesti/boxes.git}
volumes: volumes:
- ./boxes:/boxes - ./boxes:/boxes
command: /boxes/scripts/boxesserver command: /boxes/scripts/boxesserver
@@ -22,7 +22,7 @@ services:
context: . context: .
dockerfile: Dockerfile dockerfile: Dockerfile
args: args:
- BUILD_BRANCH=${BUILD_BRANCH} - BUILD_BRANCH=${BUILD_BRANCH:-master}
- BUILD_REPO=${BUILD_REPO} - BUILD_REPO=${BUILD_REPO}
# Install requirements # Install requirements
init: true init: true