Este repositorio contiene una carpeta .devcontainer
que te permite configurar un entorno de desarrollo utilizando la extensión Remote - Containers de Visual Studio Code.
Antes de comenzar, asegúrate de tener instalado lo siguiente en tu sistema:
Un poco de preparación es necesaria para engañar a VSCode para usar Podman en lugar de Docker. Puedes usar este pequeño script (copiar/pegar en tu terminal) para hacerlo:
#!/bin/bash
# Create a local bin directory
echo "Creating ~/bin directory if it doesn't exist..."
mkdir -p ~/bin
# Navigate to the directory
cd ~/bin
# Create a Docker wrapper script for Podman
echo "Creating Docker wrapper script for Podman..."
cat > docker << EOF
#!/bin/bash
podman "\$@"
EOF
# Make the script executable
chmod +x docker
echo "Docker wrapper script created."
# Add the local bin directory to your PATH
SHELL_PROFILE=""
if [ -n "$ZSH_VERSION" ]; then
SHELL_PROFILE="$HOME/.zshrc"
elif [ -n "$BASH_VERSION" ]; then
SHELL_PROFILE="$HOME/.bash_profile"
fi
if [ -n "$SHELL_PROFILE" ]; then
if ! grep -q 'export PATH=~/bin:$PATH' "$SHELL_PROFILE"; then
echo "Adding ~/bin to your PATH in $SHELL_PROFILE..."
echo 'export PATH=~/bin:$PATH' >> "$SHELL_PROFILE"
source $SHELL_PROFILE
echo "Path added and sourced\!"
else
echo "~/bin is already in your PATH."
fi
else
echo "Could not determine shell profile file."
fi
WARNING: Este script hará que todos los futuros comandos docker utilicen podman en lugar de docker. Para deshacerlo, simplemente ejecute rm -f ~/bin/docker
y todo volverá a la normalidad.
Para utilizar este contenedor de desarrollo en tu propio repositorio, sigue estos pasos:
-
Clona este repositorio:
git clone https://github.com/42-Madrid-Fundacion-Telefonica/42_linux_devcontainer.git
-
Copia la carpeta
.devcontainer
a la raíz de tu repositorio de proyecto. -
Abre tu proyecto en Visual Studio Code.
-
Visual Studio Code debería detectar la configuración del contenedor de desarrollo en tu proyecto y te pedirá que vuelvas a abrir el proyecto en un contenedor. Alternativamente, puedes abrir la Paleta de Comandos (Ctrl+Shift+P) y seleccionar
Remote-Containers: Reopen in Container
. -
Espera a que Visual Studio Code construya el contenedor de Docker y configure el entorno de desarrollo.
-
Una vez que el contenedor esté construido y el entorno esté configurado, puedes empezar a codificar dentro del contenedor de desarrollo.
- Puedes personalizar el contenedor de desarrollo modificando el archivo
devcontainer.json
dentro de la carpeta.devcontainer
. Consulta la documentación oficial para obtener más información sobre las opciones de configuración disponibles.
Si encuentras algún problema o tienes sugerencias para mejorar, por favor abre un issue en este repositorio.
¡A pasarlo bien programando!
This repository contains a .devcontainer
folder which allows you to set up a development environment using Visual Studio Code's Remote - Containers extension.
Before you begin, make sure you have the following installed on your system:
A little bit of preparation is necessary to trick VSCode to use Podman in place of Docker. You can use this little script (copy/paste it in your terminal) to do it:
#!/bin/bash
# Create a local bin directory
echo "Creating ~/bin directory if it doesn't exist..."
mkdir -p ~/bin
# Navigate to the directory
cd ~/bin
# Create a Docker wrapper script for Podman
echo "Creating Docker wrapper script for Podman..."
cat > docker << EOF
#!/bin/bash
podman "\$@"
EOF
# Make the script executable
chmod +x docker
echo "Docker wrapper script created."
# Add the local bin directory to your PATH
SHELL_PROFILE=""
if [ -n "$ZSH_VERSION" ]; then
SHELL_PROFILE="$HOME/.zshrc"
elif [ -n "$BASH_VERSION" ]; then
SHELL_PROFILE="$HOME/.bash_profile"
fi
if [ -n "$SHELL_PROFILE" ]; then
if ! grep -q 'export PATH=~/bin:$PATH' "$SHELL_PROFILE"; then
echo "Adding ~/bin to your PATH in $SHELL_PROFILE..."
echo 'export PATH=~/bin:$PATH' >> "$SHELL_PROFILE"
source $SHELL_PROFILE
echo "Path added and sourced\!"
else
echo "~/bin is already in your PATH."
fi
else
echo "Could not determine shell profile file."
fi
WARNING: This script will cause every futur docker commands to use podman in place of docker. To undo it, simply run rm -f ~/bin/docker
and everything will go back to normal.
To use this dev container in your own repository, follow these steps:
-
Clone this repository:
git clone https://github.com/42-Madrid-Fundacion-Telefonica/42_linux_devcontainer.git
-
Copy the
.devcontainer
folder to the root of your project repository. -
Open your project in Visual Studio Code.
-
Visual Studio Code should detect the dev container configuration in your project and prompt you to reopen the project in a container. Alternatively, you can open the Command Palette (Ctrl+Shift+P) and select
Remote-Containers: Reopen in Container
. -
Wait for Visual Studio Code to build the Docker container and set up the development environment.
-
Once the container is built and the environment is set up, you can start coding inside the dev container.
- You can customize the dev container by modifying the
devcontainer.json
file inside the.devcontainer
folder. Refer to the official documentation for more information on available configuration options.
If you encounter any issues or have suggestions for improvement, please open an issue on this repository.
Happy coding!