Last active
September 27, 2024 23:32
-
-
Save jcardus/6ffdd9dd11bc5bd636ab7c397fa9e6a2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apt update | |
apt install -y nginx | |
wget -O /etc/nginx/sites-enabled/default https://gist.githubusercontent.com/jcardus/bf078cc0c4d026cfdb42279883f1ad27/raw | |
service nginx restart | |
snap install docker | |
echo "Waiting for Docker to start..." | |
sleep 10 | |
docker run -d -e POSTGRES_USER=odoo -e POSTGRES_PASSWORD=odoo -e POSTGRES_DB=postgres --name db postgres:15 | |
docker run -p 8069:8069 --name odoo --link db:db odoo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment