Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/webkul/docker_cscart
https://github.com/webkul/docker_cscart
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/webkul/docker_cscart
- Owner: webkul
- Created: 2015-10-30T11:02:43.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-10-30T11:18:10.000Z (about 9 years ago)
- Last Synced: 2023-03-11T13:35:54.679Z (over 1 year ago)
- Language: PHP
- Size: 324 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# docker_cscart
Pull Image from DockerHub :-
docker pull webkul/cscart
Run a container of this image using the following command :-
"docker run -d -p 80:80 -p 3306:3306 webkul/cscart:latest"
Note-: No other services should be running on port 80 and 3306 of your host system. If so, change ports in the above docker command.
In order to access the credentials of your database, you have to get the container's console. Run the following command :-
"docker exec -it $container_id bash"
You are supposed to run "docker ps" to know container's id before you run the above command. Within container,read the content of the file named password.txt to access your mysql database username and password by running :-
cat /password.txt
Once your mysql username and password is known to you, you can simply login to mysql and create database accordingly.