Run SolidInvoice - Open Source Invoicing Software - in Docker
i12bretro
#SolidInvoice #Invoicing #Docker
Full steps can be found at https://i12bretro.github.io/tutorials/0909.html
What is SolidInvoice?
SolidInvoice is a sophisticated open-source invoicing application designed to assist small businesses and freelancers in efficiently managing their daily billing operations. With its comprehensive range of features, this elegant online platform ensures that you receive timely payments. - https://github.com/SolidInvoice/SolidInvoice
Installing Docker
01. Log into the Linux based device 02. Run the following commands in the terminal # install prerequisites sudo apt install apt-transport-https ca-certificates curl software-properties-common gnupg-agent -y # add docker gpg key curl -fsSL https://download.docker.com/linux/$(awk -F'=' '/^ID=/{ print $NF }' /etc/os-release)/gpg | sudo apt-key add - # add docker software repository sudo add-apt-repository "deb [arch=$(dpkg --print-architecture)] https://download.docker.com/linux/$(awk -F'=' '/^ID=/{ print $NF }' /etc/os-release) $(lsb_release -cs) stable" # install docker sudo apt install docker-ce docker-compose containerd.io -y # enable and start docker service sudo systemctl enable docker && sudo systemctl start docker # add the current user to the docker group sudo usermod -aG docker $USER # reauthenticate for the new group membership to take effect su - $USER
Running SolidInvoice
01. Now that Docker is installed, run the following commands to setup the SolidInvoice Docker container and run it # create working directories mkdir ~/docker/mariadb -p # set owner of working directories sudo chown "$USER":"$USER" ~/docker -R # run the mariadb docker container docker run -d --name mariadb -e MYSQL_ROOT_PASSWORD=r00tp@ss -e MYSQL_USER=solidinvoice_rw -e MYSQL_PASSWORD=SolidInv0ic3! -e MYSQL_DATABASE=solidinvoice -v ~/docker/mariadb:/var/lib/mysql --restart=unless-stopped mariadb:latest # run the solidinvoice docker container docker run -d --name solidinvoice --link mariadb:solidinvoice -e DB_PASSWORD=SolidInv0ic3! -e DB_USER=solidinvoice_rw -p 8080:80 --restart=unless-stopped solidinvoice/solidinvoice 02. Open a web browser and navigate to http://DNSorIP:8080 03. Click the Next button at the lower right corner of the System Requirements page 04. Complete the Database settings as follows: Driver: Mysql Host: mariadb Port: 3306 User: solidinvoice_rw Password: SolidInv0ic3! Database Name: solidinvoice 05. Click Next 06. After the database schema is created successfully ≫ Click Next 07. Click the Log In Now button 08. Login with the admin credentials created earlier 09. Enter a Company Name and select the default currency ≫ Click Create 10. Welcome to SolidInvoice Documentation: https://hub.docker.com/r/solidinvoice/solidinvoice/
Connect with me and others
★ Discord: https://discord.com/invite/EzenvmSHW8 ★ Reddit: https://reddit.com/r/i12bretro ★ Twitter: https://twitter.com/i12bretro ... https://www.youtube.com/watch?v=u4gMb6zO36Q
22556703 Bytes