2023-04-05 09:24:23 -07:00
# Cloud Apache Container #
2025-03-16 10:43:16 -07:00
This is the base container for running PHP based applications. Select the PHP version environment variables. PHP Version Defaults to PHP 8.3
2023-04-05 09:24:23 -07:00
2023-04-05 10:12:59 -07:00
*__You mush have docker or compatable containerization software running.__*
2023-04-05 09:27:03 -07:00
__You can pull this image locally by running:__
2023-04-05 09:24:23 -07:00
```console
2024-10-02 08:58:42 -07:00
docker pull repo.anhonesthost.net/cloud-hosting-platform/cac:latest
2023-04-05 09:24:23 -07:00
```
2023-05-27 11:13:18 -07:00
__You can then run a development version of the server by running the following commands:__
*Note this is an example, you can modify the command(s) to fit your needs.*
2023-04-05 09:24:23 -07:00
```console
mkdir -p local-development/domain.tld
cd local-development/domain.tld
2024-10-14 19:30:51 -07:00
mkdir user
mkdir -p user/logs/{apache,system}
2025-03-16 10:43:16 -07:00
docker run -d -it -p 80:80 -p 443:443 -e PHPVER=84 -e environment=DEV --mount type=bind,source="$(pwd)"/user,target=/home/myuser -v"$name-mysql":/var/lib/mysql -e uid=30001 -e user=myuser -e domain=localhost --name local-dev repo.anhonesthost.net/cloud-hosting-platform/cac:latest
2023-04-05 09:24:23 -07:00
```
2023-04-05 09:48:17 -07:00
*This will start the processes needed to run sites locally.*
2023-05-27 11:13:18 -07:00
The first time you start the container, it will take some time as it is installing all the required software to run the dev instance.
__If you need to get into the container you can run:__
2023-04-05 09:48:17 -07:00
```console
docker exec -it local-dev /bin/bash
```
__To install WordPress for your site__
```console
2024-10-15 18:44:09 -07:00
cat cat /home/myuser/mysql_creds
2023-04-05 09:48:17 -07:00
su - myuser
cd ~/public_html
wp core download
```
You should be able to then go into your browser and go to https://localhost (accept the SSL warning if it appears) and follow the prompts to setup the site.
2024-10-15 18:44:09 -07:00
The database credentials are shown in the /home/```$user` ``/mysql_creds file, which we had *cat* in the commands above.
2023-04-05 09:48:17 -07:00
2023-05-27 11:13:18 -07:00
### PHPVER ###
2023-04-05 09:27:50 -07:00
*74* - PHP 7.4
*80* - PHP 8.0
*81* - PHP 8.1
2024-10-15 18:50:11 -07:00
*82* - PHP 8.2
2025-03-16 10:43:16 -07:00
*83* - PHP 8.3
*84* - PHP 8.4
2023-04-05 09:24:23 -07:00
2023-04-05 09:27:03 -07:00
### Environment Variables ###
__Required Tags__
*uid* - User ID for File Permissions
*user* - Username for File Permissions
*domain* - Primary Domain for configuration
2023-04-05 09:24:23 -07:00
2023-04-05 09:27:03 -07:00
__Optional Tags__
*environment* - Set to DEV to start memcached and mysql locally for development purposes
2023-05-27 11:13:18 -07:00
*serveralias* - Set to allow alternative hostnames for a site.
*PHPVER* - Set to use a different version of PHP [refer to versions here. ](#phpver )
### Helpful Notes ###
2024-10-14 12:15:11 -07:00
* A cron is set up in the container to backup the database every 15 minutes to your user's directory.
2023-05-27 11:13:18 -07:00
* If you want to restart the instance again, run ```docker start {name-of-your-container}` `` in the example, *name-of-your-cintainer* is *local-dev*
* To stop a restarted instance, run ```docker stop {name-of-your-container}` ``
* To view log stream from container, run ```docker logs -f {name-of-your-container}` ``
2024-10-14 12:15:11 -07:00
* To delete a container, run ```docker rm {name-of-your-container}` `` *__Note:__ this does not delete the files in user directory or database, as those are store in your system*
2023-05-27 11:13:18 -07:00
* To view running containers, run ```docker ps` ``
* To view all created containers, run ```docker ps --all` `
* To view all container images downloaded on your system, run ```docker images` ``