Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/alvachon/42_inception


https://github.com/alvachon/42_inception

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

## TUTORIAL DOCKER

* git clone repository-name
* cd repository-name
* verif Dockerfile of the repository-name
* docker build -t repository-name .

The -t flag tags your image with a name. (welcome-to-docker in this case). And the . lets Docker know where it can find the Dockerfile. \

Once the build is complete, an image will appear in the Images tab. Select the image name to see its details. Select Run to run it as a container. In the Optional settings remember to specify a port number (something like 8089).\

* View Front end -> Containers -> 8089:***** .... (go to html page)


### DOCKER COMPOSE

* git clone repository-name
* cd repository-name
* verif Dockerfile of the repository-name
* docker build -t repository-name .
* docker compuse up -d