Skip to content

Commit e0bf45d

Browse files
committed
Update port
1 parent 0e0d32d commit e0bf45d

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,3 +204,8 @@ Notes:
204204
- You can also mount ./var to persist logs/cache between restarts. See commented volume in docker-compose.yml.
205205
- The container uses Apache with DocumentRoot set to /var/www/html/public and mod_rewrite enabled.
206206
- The base image uses PHP 8.1 (php:8.1-apache-bullseye) to match the Composer constraint (^8.1) and to ensure the IMAP build dependencies are available. You can bump to a newer 8.x tag (e.g., 8.3) if your deployment prefers it, but ensure IMAP build deps are present for that base.
207+
208+
209+
```bash
210+
docker exec -it base-distribution-app bash
211+
```

docker-compose.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ services:
44
app:
55
build: .
66
image: phplist/base-distribution:latest
7+
container_name: base-distribution-app
78
ports:
8-
- "8080:80"
9+
- "8081:80"
910
environment:
1011
# Database connection (mirrors config/parameters.yml expectations)
1112
PHPLIST_DATABASE_DRIVER: pdo_mysql
@@ -25,6 +26,7 @@ services:
2526

2627
db:
2728
image: mysql:8.0
29+
container_name: base-distribution-db
2830
environment:
2931
MYSQL_DATABASE: phplistdb
3032
MYSQL_USER: phplist

0 commit comments

Comments
 (0)