Project Docker - Brandon-Duffy/SYS-265 GitHub Wiki
This had to be completed on our VMware Workstation VMs in Joyce as I ran out of space on Docker01.
Had to install Docker, Docker-compose, apache2.
Odoo Steps:
First, a PostgreSQL Server needs to be started: "$ docker run -d -e POSTGRES_USER=odoo -e POSTGRES_PASSWORD=odoo -e POSTGRES_DB=postgres --name db postgres:13"
Start an Odoo Instance: $ docker run -p 8069:8069 --name odoo --link db:db -t odoo
Create a .yml file with the 'touch' command and edit the new file with the docker-compose information linked on the 'hub.docker' website linked.
Had to set my IP to match the network configuration of Joyce, chose 192.168.7.72, and had to change the /etc/hosts file to include my new IP change and hostname change. This one was a fairly simple .yaml file, this is all that is needed: