Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alvachon/42_inception
https://github.com/alvachon/42_inception
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/alvachon/42_inception
- Owner: alvachon
- Created: 2023-09-13T15:31:51.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-18T17:59:46.000Z (over 1 year ago)
- Last Synced: 2023-09-18T22:02:33.494Z (over 1 year ago)
- Language: JavaScript
- Size: 1.7 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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