-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
40 lines (37 loc) · 936 Bytes
/
docker-compose.dev.yml
File metadata and controls
40 lines (37 loc) · 936 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: orca-cd-dev
services:
hub:
build:
context: .
dockerfile: hub.Dockerfile
container_name: orca-hub-dev
ports:
- '127.0.0.1:8080:8080'
volumes:
- ./data/hub:/app/data
environment:
- APP_URL=http://localhost:8080
- APP_SECRET=supersecretkey_minimum_32_characters
agent:
build:
context: .
dockerfile: agent.Dockerfile
container_name: orca-agent-dev
use_api_socket: true # Allows container to access Docker API on host
depends_on:
- hub
environment:
- HUB_URL=ws://hub:8080/api/v1/ws
- AUTH_TOKEN=
pocket-id:
container_name: pocket-id-dev
image: ghcr.io/pocket-id/pocket-id:v2
ports:
- 127.0.0.1:1411:1411
volumes:
- "./data/pocket-id:/app/data"
environment:
- APP_URL=http://localhost:1411
- ENCRYPTION_KEY=supersecretkey_minimum_32_characters
profiles:
- pocket-id