diff --git a/compose.yaml b/compose.yaml index c35433f..d9b685b 100644 --- a/compose.yaml +++ b/compose.yaml @@ -5,12 +5,12 @@ services: container_name: bbs image: marcpope/borgbackupserver:latest ports: - - "${WEB_PORT:-8080}:80" # Web UI - - "${SSH_PORT:-2222}:22" # SSH for borg agent connections + - "${WEB_PORT}:80" # Web UI + - "${SSH_PORT}:22" # SSH for borg agent connections environment: - - APP_URL=${APP_URL:-http://localhost:8080} - - SSH_PORT=${SSH_PORT:-2222} - - WEB_PORT=${WEB_PORT:-8080} + - APP_URL=${APP_URL} + - SSH_PORT=${SSH_PORT} + - WEB_PORT=${WEB_PORT} volumes: - bbs-data:/var/bbs restart: unless-stopped