Skip to content

Instantly share code, notes, and snippets.

@linuxbiekaisar
Created June 14, 2020 09:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save linuxbiekaisar/50fd139085addeaad19671f152614ec4 to your computer and use it in GitHub Desktop.
Save linuxbiekaisar/50fd139085addeaad19671f152614ec4 to your computer and use it in GitHub Desktop.
How to install Cocorico in Ubuntu 20.04 LTS
# For installing cocorico, follow the under mentioned steps
# Update and Install curl
sudo apt-get update
sudo apt-get upgrade
sudo apt install curl
# Install Docker-compose
sudo curl -L https://github.com/docker/compose/releases/download/1.21.2/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
docker-compose --version
# Run the cocorico docker container
docker run --name cocorico -ti -p 80:80 -p 3306:3306 -p 9001:9001 -p 27017:27017 -v `pwd`:/cocorico -v `pwd`/tmp/mysql:/var/lib/mysql -v `pwd`/tmp/mongo:/data/db -e HOST_UID=$UID cocolabs/cocorico
# Once the symfony server is running, enjoy Cocorico: http://localhost
# Also you can control processes with Supervisor: http://localhost:9001
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment