update port conflict with podman cockpit

This commit is contained in:
alexveebee 2025-04-23 22:03:30 +00:00
parent 21d573809b
commit cb06845cc7
2 changed files with 15 additions and 3 deletions

View File

@ -12,8 +12,8 @@ services:
- ./docker/nginx/proxy.conf:/etc/nginx/conf.d/proxy.conf
# - ./docker/nginx/ssl:/etc/nginx/ssl # optional For SSL
ports:
- "9090:80"
# - "9092:443" # optional for SSL
- "9080:80"
# - "9081:443" # optional for SSL
depends_on:
- db
- php
@ -75,7 +75,7 @@ services:
volumes:
- ./local-instances/${INSTANCE:-0}/db:/var/lib/mysql
ports:
- "9091:3306"
- "9082:3306"
environment:
MYSQL_DATABASE: ${MYSQL_DATABASE}
MYSQL_USER: ${MYSQL_USER}

View File

@ -146,3 +146,15 @@ podman-compose down
```bash
podman logs vichan_php
```
## Troubleshooting
### unqualified-search-registries for Docker.io
1. Edit the config file with `nano /etc/containers/registries.conf`
2. Add the registry for `docker.io` with `unqualified-search-registries = ["docker.io"]`
3. Save and exit
4. Run `podman-compose up -d`