Created
September 4, 2021 14:51
-
-
Save kevinadhiguna/e20ffd712030e2f1f2eeeb5717503030 to your computer and use it in GitHub Desktop.
π Joomla (a PHP-based CMS) with MySQL powered by docker-compose (π§ Currently under development...)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.1' | |
services: | |
joomla: | |
image: joomla | |
restart: always | |
depends_on: | |
- joomla_mysql_db | |
links: | |
- joomla_mysql_db:mysql | |
ports: | |
- 8080:80 | |
environment: | |
JOOMLA_DB_HOST: joomla_mysql_db | |
JOOMLA_DB_PASSWORD: password123 | |
joomla_mysql_db: | |
image: mysql:5.7 | |
restart: always | |
volumes: | |
- 'joomla_mysqldb_volume:/var/lib/mysql' | |
environment: | |
MYSQL_ROOT_PASSWORD: password123 | |
volumes: | |
joomla_mysqldb_volume: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment