Skip to content

Commit e38abd3

Browse files
committed
feat: Add capability to run docker-in-docker
1 parent c228b5e commit e38abd3

File tree

2 files changed

+54
-62
lines changed

2 files changed

+54
-62
lines changed

.devcontainer/Dockerfile

+30-44
Original file line numberDiff line numberDiff line change
@@ -8,70 +8,56 @@ RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
88
git \
99
curl \
1010
fish \
11+
docker.io \
12+
sudo \
13+
build-essential \
1114
&& apt-get clean \
1215
&& rm -rf /var/lib/apt/lists/*
1316

14-
RUN mkdir -p /home/vscode/.local/share/CMakeTools \
15-
&& chown -R vscode:vscode /home/vscode/.local/share/CMakeTools
17+
# Add user to docker group
18+
RUN usermod -aG docker vscode
1619

17-
RUN mkdir -p /home/vscode/.ssh \
20+
# Create directories and set permissions
21+
RUN mkdir -p /home/vscode/.local/share/CMakeTools \
22+
&& chown -R vscode:vscode /home/vscode/.local/share/CMakeTools \
23+
&& mkdir -p /home/vscode/.ssh \
1824
&& chown vscode:vscode /home/vscode/.ssh \
1925
&& chmod 700 /home/vscode/.ssh
2026

21-
# Install arduino-cli
22-
RUN curl -fsSL https://raw.githubusercontent.com/arduino/arduino-cli/master/install.sh | sh
23-
24-
# Set up arduino-cli config
25-
RUN arduino-cli config init
27+
# Install Arduino CLI
28+
RUN curl -fsSL https://raw.githubusercontent.com/arduino/arduino-cli/master/install.sh | sh \
29+
&& arduino-cli config init
2630

27-
# Add arduino-cli to PATH
2831
ENV PATH="/usr/local/bin:${PATH}"
29-
30-
# Create workspace directory
3132
WORKDIR /workspace
3233

33-
# Copy arduino-cli configuration (customise to your actual path)
34+
# Copy Arduino config and update script
3435
COPY arduino-cli.yaml /root/.arduino15/arduino-cli.yaml
35-
36-
# Install build essentials
37-
RUN apt-get update && apt-get install -y build-essential && rm -rf /var/lib/apt/lists/*
38-
39-
# (Optional) Install Arduino cores for ESP8266 and ESP32 if needed
40-
RUN arduino-cli core install esp8266:esp8266 esp32:esp32
41-
42-
# Install only required dependencies for DallasTemperature library and others
43-
RUN arduino-cli lib install \
44-
"OneWire" \
45-
"ArduinoUnit" # For testing
46-
47-
# Verify library installation
48-
RUN arduino-cli lib list
49-
50-
# Copy update script
5136
COPY update-libraries.sh /usr/local/bin/
5237
RUN chmod +x /usr/local/bin/update-libraries.sh
5338

54-
# Add aliases for build operations (for Bash)
55-
RUN echo 'alias arduino-build="./build.sh build"' >> /home/vscode/.bashrc && \
56-
echo 'alias arduino-test="./build.sh test"' >> /home/vscode/.bashrc && \
57-
echo 'alias arduino-build-test="./build.sh all"' >> /home/vscode/.bashrc
39+
# Install Arduino cores and libraries
40+
RUN arduino-cli core install esp8266:esp8266 esp32:esp32 \
41+
&& arduino-cli lib install "OneWire" "ArduinoUnit" \
42+
&& arduino-cli lib list
5843

59-
# Add a welcome message to .bashrc
60-
RUN echo '\n# Welcome to the dev container! Here are some useful aliases:' >> /home/vscode/.bashrc && \
61-
echo 'echo " - arduino-build: Build the project"' >> /home/vscode/.bashrc && \
62-
echo 'echo " - arduino-test: Run tests for the project"' >> /home/vscode/.bashrc && \
63-
echo 'echo " - arduino-build-test: Build and test the project"' >> /home/vscode/.bashrc
44+
# Configure shells
45+
RUN echo 'alias arduino-build="./build.sh build"\nalias arduino-test="./build.sh test"\nalias arduino-build-test="./build.sh all"' >> /home/vscode/.bashrc \
46+
&& echo '\n# Welcome to the dev container! Here are some useful aliases:\necho " - arduino-build: Build the project"\necho " - arduino-test: Run tests for the project"\necho " - arduino-build-test: Build and test the project"' >> /home/vscode/.bashrc \
47+
&& mkdir -p /home/vscode/.config/fish \
48+
&& echo 'set -gx PATH /usr/local/bin $PATH\n# Welcome to the Fish shell inside the dev container!' >> /home/vscode/.config/fish/config.fish
6449

65-
# (Optional) Add fish-specific configuration if desired
66-
# For example, you might add an alias file or welcome message for fish:
67-
RUN mkdir -p /home/vscode/.config/fish && \
68-
echo 'set -gx PATH /usr/local/bin $PATH' >> /home/vscode/.config/fish/config.fish && \
69-
echo '# Welcome to the Fish shell inside the dev container!' >> /home/vscode/.config/fish/config.fish
70-
71-
# Generate SSH keys and set proper ownership and permissions
50+
# Generate SSH keys
7251
RUN if [ ! -f /home/vscode/.ssh/id_rsa ]; then \
7352
ssh-keygen -t rsa -b 4096 -N "" -C "devcontainer@local" -f /home/vscode/.ssh/id_rsa && \
7453
chmod 600 /home/vscode/.ssh/id_rsa && \
7554
chmod 644 /home/vscode/.ssh/id_rsa.pub && \
7655
chown vscode:vscode /home/vscode/.ssh/id_rsa /home/vscode/.ssh/id_rsa.pub ; \
7756
fi
57+
58+
# Docker-in-Docker setup
59+
RUN echo '#!/bin/sh\nchmod 666 /var/run/docker.sock\nexec "$@"' > /usr/local/bin/docker-entrypoint.sh \
60+
&& chmod +x /usr/local/bin/docker-entrypoint.sh
61+
62+
ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"]
63+
CMD ["sleep", "infinity"]

.devcontainer/devcontainer.json

+24-18
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,29 @@
11
{
2-
"name": "Arduino Library Development",
3-
"dockerFile": "Dockerfile",
4-
"mounts": [
2+
"name": "Arduino Library Development",
3+
"build": {
4+
"dockerfile": "Dockerfile",
5+
"context": ".."
6+
},
7+
"mounts": [
58
"source=devcontainer_ssh,target=/home/vscode/.ssh,type=volume",
69
"source=devcontainer_bash_history,target=/home/vscode/.bash_history,type=volume",
7-
"source=devcontainer_fish_history,target=/home/vscode/.local/share/fish/fish_history,type=volume"
8-
],
9-
"customizations": {
10+
"source=devcontainer_fish_history,target=/home/vscode/.local/share/fish/fish_history,type=volume",
11+
"source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind"
12+
],
13+
"customizations": {
1014
"vscode": {
11-
"extensions": [
12-
"vsciot-vscode.vscode-arduino",
13-
"ms-vscode.cpptools",
14-
"ms-azuretools.vscode-docker",
15-
"yzhang.markdown-all-in-one"
16-
]
15+
"extensions": [
16+
"vsciot-vscode.vscode-arduino",
17+
"ms-vscode.cpptools",
18+
"ms-azuretools.vscode-docker",
19+
"yzhang.markdown-all-in-one"
20+
],
21+
"settings": {
22+
"terminal.integrated.defaultProfile.linux": "fish",
23+
"arduino.path": "/usr/local/bin/arduino-cli"
24+
}
1725
}
18-
},
19-
"postCreateCommand": "arduino-cli core install arduino:avr && arduino-cli lib install ArduinoUnit && /usr/local/bin/update-libraries.sh",
20-
"updateContentCommand": "/usr/local/bin/update-libraries.sh",
21-
"remoteUser": "vscode"
22-
}
23-
26+
},
27+
"postCreateCommand": "arduino-cli core install arduino:avr && arduino-cli lib install ArduinoUnit && /usr/local/bin/update-libraries.sh",
28+
"remoteUser": "vscode"
29+
}

0 commit comments

Comments
 (0)