[+] devtainer

This commit is contained in:
Azalea 2026-03-28 03:44:05 -04:00
parent f546e40318
commit e334ada5b4
3 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,20 @@
FROM archlinux:latest
RUN pacman -Syu --noconfirm \
&& pacman -S --noconfirm openssh sudo jdk17-openjdk \
&& rm -rf /var/cache/pacman/pkg/* \
&& mkdir -p /var/run/sshd
RUN sed -i 's/.*PermitRootLogin.*/PermitRootLogin yes/' /etc/ssh/sshd_config \
&& sed -i 's/#PermitEmptyPasswords no/PermitEmptyPasswords yes/' /etc/ssh/sshd_config \
&& sed -i 's/#PasswordAuthentication yes/PasswordAuthentication yes/' /etc/ssh/sshd_config \
&& sed -i 's/UsePAM yes/UsePAM no/' /etc/ssh/sshd_config
RUN ssh-keygen -A && passwd -d root
RUN pacman -S --noconfirm zsh git curlie micro ripgrep python3 exa \
&& rm -rf /var/cache/pacman/pkg/* \
&& chsh -s /bin/zsh root \
&& curl -sL hydev.org/zsh | bash
CMD ["/usr/sbin/sshd", "-D"]

View File

@ -0,0 +1,11 @@
Add this to your `~/.ssh/config`:
```
Host aquadx-devtainer
HostName localhost
Port 2322
User root
StrictHostKeyChecking no
```
Then you can use `ssh aquadx-devtainer` to connect to the container.

View File

@ -0,0 +1,13 @@
services:
dev:
build:
context: .
dockerfile: Dockerfile
volumes:
- ../../:/workspaces:cached
cap_add:
- SYS_PTRACE
ports:
- "127.0.0.1:2322:22"
environment:
- JAVA_OPTS=-Xmx2g