-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
70 lines (65 loc) · 1.57 KB
/
docker-compose.yml
File metadata and controls
70 lines (65 loc) · 1.57 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
services:
arkapi:
build: .
container_name: arkapi
user: "999:4"
network_mode: host
restart: unless-stopped
env_file:
- .env
volumes:
- arkapi-data:/data
- ./geoip:/geoip:ro
# Optional: mount your reverse-proxy log directory if you want
# /v1/admin/overview traffic reporting from inside the container.
# Adjust the path for your environment, or run scripts/ensure-admin-traffic.sh.
# - /var/log/apache2:/var/log/apache2:ro
bark:
build:
context: .
dockerfile: Dockerfile.bark
container_name: bark
restart: unless-stopped
ports:
- "127.0.0.1:3000:3000"
volumes:
- bark-data:/root/.bark
environment:
- BARK_ARK_SERVER=${BARK_ARK_SERVER:-ark.signet.2nd.dev}
- BARK_ESPLORA=${BARK_ESPLORA:-esplora.signet.2nd.dev}
translate:
build:
context: ./translate
dockerfile: Dockerfile
container_name: arkapi-translate
restart: unless-stopped
ports:
- "127.0.0.1:5001:5000"
screenshotter:
build:
context: .
dockerfile: screenshotter/Dockerfile
container_name: arkapi-screenshotter
restart: unless-stopped
ports:
- "127.0.0.1:9010:9010"
env_file:
- .env
hashcrack:
build:
context: .
dockerfile: hashcrack/Dockerfile
container_name: arkapi-hashcrack
restart: unless-stopped
ports:
- "127.0.0.1:9021:9021"
env_file:
- .env
cpus: 2.0
mem_limit: 512m
pids_limit: 128
security_opt:
- no-new-privileges:true
volumes:
arkapi-data:
bark-data: