Update Website_Containers/lamp_stack/compose.yaml

This commit is contained in:
2026-04-12 01:37:42 +00:00
parent df26c59182
commit e22cade6e2
@@ -1,7 +1,6 @@
services: services:
web: web:
image: php:8.4-apache #check the php version you need for your project image: php:8.4-apache #check the php version you need for your project
container_name: lamp-web
#ports: #ports:
# - "8086:80" #this line maps your pc port to the container port # - "8086:80" #this line maps your pc port to the container port
depends_on: depends_on:
@@ -12,7 +11,6 @@ services:
db: db:
image: mysql:9.3.0 #check the mysql version you need for your project image: mysql:9.3.0 #check the mysql version you need for your project
container_name: lamp-db
environment: environment:
MYSQL_ROOT_PASSWORD: password #you can change the mysql root password here MYSQL_ROOT_PASSWORD: password #you can change the mysql root password here
MYSQL_DATABASE: lamp_db #you can change the database name here MYSQL_DATABASE: lamp_db #you can change the database name here
@@ -22,7 +20,6 @@ services:
phpmyadmin: phpmyadmin:
image: phpmyadmin/phpmyadmin image: phpmyadmin/phpmyadmin
container_name: lamp-phpadmin
#ports: #ports:
# - "8087:80" #this line maps your pc port to the container port # - "8087:80" #this line maps your pc port to the container port
depends_on: depends_on:
@@ -30,7 +27,6 @@ services:
environment: environment:
PMA_HOST: db PMA_HOST: db
restart: unless-stopped restart: unless-stopped
networks: networks:
default: default:
external: true external: true