30 lines
993 B
Bash
30 lines
993 B
Bash
UID=1000 # id -u
|
|
GID=1000 # id -g
|
|
HOST_USER=spyder # Container-Benutzername
|
|
HOST_GROUP=spyder # Container-Gruppe
|
|
|
|
# Container-interne Pfade
|
|
SPYDER_HOME=/home/spyder
|
|
SPYDER_WORKSPACE=/home/spyder/workspace
|
|
|
|
# Host-Verzeichnisse für Bind-Mounts (können relativ zum Projekt sein)
|
|
SPYDER_HOME_VOLUME=./spyder-home
|
|
SPYDER_WORKSPACE_VOLUME=./spyder-workspace
|
|
|
|
# Display- und Laufzeit-Details des Host-Systems
|
|
XDG_RUNTIME_DIR=/run/user/1000
|
|
WAYLAND_DISPLAY=wayland-1
|
|
DISPLAY=:0
|
|
|
|
DEBUG=1
|
|
|
|
# Container registry settings
|
|
LOCAL_IMAGE_NAME=spyder-conda
|
|
SPYDER_IMAGE=git.maxboeer.com/schmax/spyder-desktop-docker:latest
|
|
BUILDX_PLATFORMS=linux/amd64,linux/arm64
|
|
BUILDX_BUILDER_NAME=spyder-buildx
|
|
# Optional: non-interactive registry login for build-and-push.sh
|
|
# Do NOT commit secrets; prefer exporting these in your shell/session.
|
|
# REGISTRY_HOST=git.maxboeer.com
|
|
# REGISTRY_USER=your-username
|
|
# REGISTRY_TOKEN=your-personal-access-token |