There was an error while loading. Please reload this page.
1 parent d647342 commit ff0d27fCopy full SHA for ff0d27f
1 file changed
docker-compose.yml
@@ -12,3 +12,16 @@ services:
12
- '127.0.0.1:8080:8080'
13
volumes:
14
- ./data/hub:/app/data
15
+
16
+ agent:
17
+ image: ghcr.io/orcacd/agent:latest # Replace with your actual image version tag
18
+ container_name: orca-agent
19
+ restart: unless-stopped
20
+ env_file: .env
21
+ security_opt:
22
+ - no-new-privileges:true
23
+ cap_drop:
24
+ - ALL
25
+ use_api_socket: true # Allows container to access Docker API on host
26
+ depends_on: # Remove this if you are only deploying the agent on a host without the hub
27
+ - hub
0 commit comments