Skip to content

Commit 982c487

Browse files
committed
add 64
1 parent b3f48c7 commit 982c487

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

config_64/docker-compose.yml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
version: '2'
2+
services:
3+
frontend:
4+
image: ghcr.io/coderbotorg/frontend:v0.7.2
5+
restart: unless-stopped
6+
network_mode: host
7+
privileged: true
8+
9+
backend:
10+
image: ghcr.io/coderbotorg/backend:5.1.1
11+
restart: unless-stopped
12+
network_mode: host
13+
privileged: true
14+
depends_on:
15+
- pigpio
16+
volumes:
17+
- "data:/coderbot/data"
18+
labels:
19+
io.balena.features.supervisor-api: "1"
20+
io.balena.features.kernel-modules: '1'
21+
22+
wifi-py:
23+
image: ghcr.io/coderbotorg/python-wifi-connect:0.0.16
24+
restart: unless-stopped
25+
network_mode: host
26+
privileged: true
27+
environment:
28+
## Listening IP and port ##
29+
PWC_HOST: "0.0.0.0"
30+
PWC_PORT: 9090
31+
32+
## Hotspot details ##
33+
PWC_HOTSPOT_SSID: "CoderBot_$UNIQUE_ID"
34+
PWC_HOTSPOT_PASSWORD: "coderbot" # Optional. Must be 8 characters or more.
35+
DBUS_SYSTEM_BUS_ADDRESS: "unix:path=/host/run/dbus/system_bus_socket"
36+
labels:
37+
io.balena.features.dbus: "1"
38+
cap_add:
39+
- NET_ADMIN
40+
41+
pigpio:
42+
image: coderbot/alpine-pigpiod:pigpio-v79
43+
restart: unless-stopped
44+
network_mode: host
45+
privileged: true
46+
47+
volumes:
48+
data:
49+
logs:

0 commit comments

Comments
 (0)