This commit is contained in:
Tristan Andrus 2025-03-25 23:11:17 -06:00
parent 51093244f6
commit 4035b2bd05
2 changed files with 2 additions and 0 deletions

View File

@ -5,6 +5,7 @@ WORKDIR /app
COPY requirements.txt ./ COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt RUN pip install --no-cache-dir -r requirements.txt
RUN apk get rsync
COPY . ./ COPY . ./

View File

@ -6,6 +6,7 @@ services:
- "35350:35350" - "35350:35350"
volumes: volumes:
- /serve/data/basket:/serve/data/basket - /serve/data/basket:/serve/data/basket
- $HOME/.ssh:/root/.ssh
environment: environment:
- UID=${UID:-1000} - UID=${UID:-1000}
- GID=1000 - GID=1000