Compare commits

4 Commits

Author SHA1 Message Date
a5deb07a66 fixed env format and added phpmyadmin doc 2025-06-08 18:15:16 -07:00
9fd3d7142d fixed the readme links 2025-03-26 18:19:10 -07:00
c185b80b4f updated name in docker-compose 2025-03-21 18:21:19 -07:00
9dcb385cf1 fix path 2025-03-21 17:42:30 -07:00
3 changed files with 14 additions and 10 deletions

View File

@@ -1,9 +1,8 @@
![Novaconium PHP](/_assets/novaconium-logo.png) ![CORXN Container](/_assets/corxn-logo.png)
# CORXN - The Core Foundation of Novaconium # CORXN - The Core Foundation of Novaconium
Dockerhub: https://hub.docker.com/r/4lights/phpcontainer Links: [Dockerhub](https://hub.docker.com/r/4lights/corxn), [Git Repo](https://git.4lt.ca/4lt/CORXN)
Git Repo: https://git.4lt.ca/4lt/phpcontainer
CORXN (core-ex-en) is a lightweight yet powerful Docker-based environment designed as the core foundation for the [Novaconium PHP Framework](https://git.4lt.ca/4lt/novaconium). CORXN (core-ex-en) is a lightweight yet powerful Docker-based environment designed as the core foundation for the [Novaconium PHP Framework](https://git.4lt.ca/4lt/novaconium).
It provides a streamlined stack featuring Apache, the latest PHP version, Redis, and MariaDB, optimized for high performance. It provides a streamlined stack featuring Apache, the latest PHP version, Redis, and MariaDB, optimized for high performance.

View File

@@ -1,7 +1,7 @@
# Sample Docker Compose # Sample Docker Compose
services: services:
php-apache: corxn:
image: 4lights/phpcontainer:6.0.0 image: 4lights/corxn:6.0.0
ports: ports:
- "8000:80" - "8000:80"
volumes: volumes:
@@ -22,10 +22,10 @@ services:
mariadb: mariadb:
image: mariadb:latest image: mariadb:latest
environment: environment:
MYSQL_ROOT_PASSWORD: rootpassword - MYSQL_ROOT_PASSWORD=rootpassword
MYSQL_DATABASE: dbname - MYSQL_DATABASE=dbname
MYSQL_USER: user - MYSQL_USER=user
MYSQL_PASSWORD: password - MYSQL_PASSWORD=password
volumes: volumes:
- ./data/db:/var/lib/mysql - ./data/db:/var/lib/mysql
networks: networks:
@@ -36,4 +36,4 @@ networks:
proxy: proxy:
external: true external: true
internal: internal:
driver: bridge driver: bridge

5
docs/phpmyadmin.md Normal file
View File

@@ -0,0 +1,5 @@
# PHPMYADMIN
You may want to use PHPmyAdmin for testing.
Checkout [Docker Cookbooks](https://github.com/nickyeoman/docker-compose-cookbooks/blob/master/phpmyadmin/docker-compose.yml) for an example.