This article shows the following:
.
├── build
│ ├── Dockerfile
├── docker-compose.yaml
FROM ubuntu:24.04
WORKDIR /test
ENV MYUSER=danaukes
ENV MYGROUP=danaukes
ENV MYUID=1001 #1000 is taken by default by user ubuntu
ENV MYGID=1001 #1000 is taken by default by group ubuntu
RUN apt update && apt install -y openssh-server iputils-ping git sudo net-tools
RUN addgroup --gid ${MYGID} ${MYGROUP} && \
useradd -p $(perl -e 'print crypt($ARGV[0], "password")' 'test') -u ${MYUID} -g ${MYGID} -G adm,sudo ${MYUSER} && \
mkdir /home/${MYUSER} && \
chown ${MYUSER}:${MYGROUP} /home/${MYUSER} && \
echo "${MYUSER} ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers.d/nopasswd
RUN echo "PermitRootLogin yes" >> /etc/ssh/sshd_config
RUN echo "PasswordAuthentication yes" >> /etc/ssh/sshd_config
USER ${MYUSER}
services:
web:
build: ./build
user: danaukes
networks:
ubuntu-network:
ipv4_address: "192.168.0.90"
dns:
- 192.168.0.1
ports:
- 22:22
command: bash -c "sudo service ssh start && sleep infinity"
restart: unless-stopped
networks:
ubuntu-network:
driver: ipvlan
driver_opts:
parent: wlp1s0
ipvlan-mode: l2
ipam:
driver: default
config:
- subnet: 192.168.0.0/24
gateway: 192.168.0.1
ip_range: 192.168.0.0/24
docker build --no-cache -t ssh ./build
docker build -t ssh ./build
docker compose build
docker compose up
docker compose down
may need to run this to enable the kind of networking needed above:
sysctl -w net.ipv4.ip_forward=1
sudo iptables -P FORWARD ACCEPT
sudo service docker restart
docker system prune
apt update
apt install -y openssh-server iputils-ping
echo "PermitRootLogin yes" >> /etc/ssh/sshd_config
#apt install -y nano
#nano /etc/ssh/sshd_config
service ssh start
#sudo passwd root
sudo /etc/init.d/ssh reload
docker compose up --force-recreate --build ros -d
docker exec -it --user user1 d64dd7a05bb3 /bin/bash
echo "export PATH=/opt/ros/galactic/bin:\$PATH" >> ~/.bashrc
https://automaticaddison.com/how-to-install-and-launch-ros2-using-docker/
https://devanshdhrafani.github.io/blog/2021/04/15/dockerros2.html
https://stackoverflow.com/questions/35742807/docker-1-10-containers-ip-in-lan
https://www.reddit.com/r/docker/comments/jt032d/how_to_give_a_container_its_own_ip_address_on/
https://stackoverflow.com/questions/39855304/how-to-add-user-with-dockerfile
https://askubuntu.com/questions/668129/password-does-not-work-with-useradd-p
https://stackoverflow.com/questions/30063907/docker-compose-how-to-execute-multiple-commands
https://duckduckgo.com/?t=ffab&q=how+to+rebuild+docker+image+from+compose&ia=web
Note: Another important thing to remember (Macvlan and IPvlan): Traffic to and from the master device cannot be sent to and from slave devices. If you need to enable master to slave communication see section “Communication with the host (default-ns)” in the “IPVLAN – The beginning” paper published by one of the IPvlan authors (Mahesh Bandewar). found here