Docker

Lectures examples on Docker Debian container  PNG

Install Docker enviroment (https://docs.docker.com/engine/install/). Docker container:

#Dockerfile#####################

# Używaj obrazu Debian dla architektury ARM
FROM debian:bullseye-slim

# Aktualizacja pakietów i instalacja potrzebnych narzędzi
RUN apt-get update && apt-get install -y \
    curl \
    && rm -rf /var/lib/apt/lists/*

######################


#docker-compose.yml#####################

version: '3.8'

services:
  debian-container:
    build:
      context: .
      dockerfile: Dockerfile
    image: debian-custom:latest
    container_name: debian_arm_container
    stdin_open: true
    tty: true

######################

Run Docker container: docker-compose up --build

#############################old

Topics of lectures:

MUST HAVE
HyperText Markup Language (HTML) for authoring web pages
Cascading Style Sheets (CSS) for supplying stylistic information to web pages
JavaScript for creating interactive web pages

OTHER
NodeJS
Databeses
Application Programming Interface






Ostatnia modyfikacja: piątek, 8 marzec 2024, 12:44