Compare commits
4 Commits
e6b9d42097
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| a5deb07a66 | |||
| 9fd3d7142d | |||
| c185b80b4f | |||
| 9dcb385cf1 |
@@ -1,9 +1,8 @@
|
||||

|
||||

|
||||
|
||||
# CORXN - The Core Foundation of Novaconium
|
||||
|
||||
Dockerhub: https://hub.docker.com/r/4lights/phpcontainer
|
||||
Git Repo: https://git.4lt.ca/4lt/phpcontainer
|
||||
Links: [Dockerhub](https://hub.docker.com/r/4lights/corxn), [Git Repo](https://git.4lt.ca/4lt/CORXN)
|
||||
|
||||
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.
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# Sample Docker Compose
|
||||
services:
|
||||
php-apache:
|
||||
image: 4lights/phpcontainer:6.0.0
|
||||
corxn:
|
||||
image: 4lights/corxn:6.0.0
|
||||
ports:
|
||||
- "8000:80"
|
||||
volumes:
|
||||
@@ -22,10 +22,10 @@ services:
|
||||
mariadb:
|
||||
image: mariadb:latest
|
||||
environment:
|
||||
MYSQL_ROOT_PASSWORD: rootpassword
|
||||
MYSQL_DATABASE: dbname
|
||||
MYSQL_USER: user
|
||||
MYSQL_PASSWORD: password
|
||||
- MYSQL_ROOT_PASSWORD=rootpassword
|
||||
- MYSQL_DATABASE=dbname
|
||||
- MYSQL_USER=user
|
||||
- MYSQL_PASSWORD=password
|
||||
volumes:
|
||||
- ./data/db:/var/lib/mysql
|
||||
networks:
|
||||
@@ -36,4 +36,4 @@ networks:
|
||||
proxy:
|
||||
external: true
|
||||
internal:
|
||||
driver: bridge
|
||||
driver: bridge
|
||||
|
||||
5
docs/phpmyadmin.md
Normal file
5
docs/phpmyadmin.md
Normal 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.
|
||||
Reference in New Issue
Block a user