Skip to content

Commit 6a5e366

Browse files
committed
update: docker-composeでイメージのビルドなしで環境構築できるようにした
1 parent dcd8e91 commit 6a5e366

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@ make build
2525

2626

2727
#### Docker仮想環境
28+
- docker-composeを利用する場合(速いのでおすすめ)
29+
```shell
30+
docker-compose run --rm etrobocon
31+
```
32+
33+
- Dockerイメージから構築する場合
2834
```etrobocon2025```で以下を順に実行
2935
1. (まだの場合は)bookworm環境のイメージを以下のコマンドで作成
3036
```shell

docker-compose.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
version: '3.8'
2+
3+
services:
4+
etrobocon:
5+
image: chihayataku/kat_etrobo2025:arm64
6+
container_name: etrobocon2025
7+
tty: true
8+
stdin_open: true
9+
volumes:
10+
- .:/RasPike-ART/sdk/workspace/etrobocon2025

0 commit comments

Comments
 (0)