Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: self-hosted
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Deploy container
run: |
Expand Down
5 changes: 2 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
volumes:
agent_data:
name: agent_box
data:
tmp_data:

services:
Expand All @@ -11,7 +10,7 @@ services:
group_add:
- "${DOCKER_GID:-999}"
volumes:
- agent_data:/home/agent
- data:/home/agent
- tmp_data:/tmp
- /var/run/docker.sock:/var/run/docker.sock
command: ["uv", "run", "agent-box", "--qq"]
Expand Down
Loading