https://github.com/zainabdnaya/ft_server_42
This is a System Administration subject.
https://github.com/zainabdnaya/ft_server_42
docker docker-images dockerfile webserver
Last synced: about 2 months ago
JSON representation
This is a System Administration subject.
- Host: GitHub
- URL: https://github.com/zainabdnaya/ft_server_42
- Owner: zainabdnaya
- Created: 2021-03-30T10:58:31.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-03-30T11:53:29.000Z (over 5 years ago)
- Last Synced: 2025-04-12T06:51:26.498Z (about 1 year ago)
- Topics: docker, docker-images, dockerfile, webserver
- Language: PHP
- Homepage:
- Size: 11.8 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ft_server
This is a System Administration subject.
## what is Docher ?! :whale:
-Docker is software that allows users to run lightweight virtual machines. You can build Docker "containers" with a Dockerfile.
-A container is a single lightweight virtual machine running an os, with its own memory space and storage.
-It is created on an image, which is a template with preconfigured software.
-A container differs from a virtual machine because it uses the same kernel as the host computer, whereas a virtual machine has its own kernel.
-Containers are faster and lighter.

## what is Dockerfile ?! :scroll:
-A Dockerfile is a text document that contains all the commands a user could call on the command line to assemble an image.
Using docker build users can create an automated build that executes several command-line instructions in succession.