Skip to content

Commit 9f39acf

Browse files
authored
Merge pull request #12 from Dstack-TEE/m-mac
Docker works on a mac
2 parents c10d4a9 + fc7fcc8 commit 9f39acf

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

lightclient/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
version: "3.9"
21
services:
32
tapp:
43
configs:
@@ -7,6 +6,7 @@ services:
76
volumes:
87
- /var/run/tappd.sock:/var/run/tappd.sock
98
build:
9+
context: .
1010
dockerfile_inline: |
1111
FROM ubuntu:22.04
1212
RUN apt-get update && apt install -y curl wget
@@ -20,7 +20,7 @@ services:
2020
RUN curl -L 'https://github.com/a16z/helios/releases/download/0.7.0/helios_linux_amd64.tar.gz' | tar -xzC .
2121
2222
CMD [ "bash", "/root/run.sh" ]
23-
23+
platform: linux/amd64
2424
configs:
2525
run.sh:
2626
content: |

timelock-nts/docker-compose.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,13 @@ services:
66
volumes:
77
- /var/run/tappd.sock:/var/run/tappd.sock
88
build:
9+
context: .
910
dockerfile_inline: |
1011
FROM ubuntu:22.04
1112
RUN apt-get update
1213
RUN apt install -y curl openssl ntpsec-ntpdate
1314
command: bash run.sh
15+
platform: linux/amd64
1416

1517
configs:
1618
run.sh:

0 commit comments

Comments
 (0)