Wed Jul 15 08:04:32 UTC 2026
=== docker ps with full ports ===
NAMES                                 PORTS                    IMAGE              COMMAND
oscar-wordpress                       127.0.0.1:8080->80/tcp   wordpress:latest   "docker-entrypoint.sh apache2-foreground"
oscar-mariadb,oscar-wordpress/mysql   3306/tcp                 mariadb:10.6       "docker-entrypoint.sh mariadbd"
=== docker inspect oscar-wordpress ===
{"80/tcp":[{"HostIp":"127.0.0.1","HostPort":"8080"}]}
=== docker inspect oscar-wordpress port 80 ===
{"HostIp":"127.0.0.1","HostPort":"8080"}
=== curl from inside the container ===
container curl: 301
=== curl from VPS directly to 127.0.0.1:8080 ===



=== curl to 8080 -v 2 lines ===
*   Trying 127.0.0.1:8080...
* Connected to 127.0.0.1 (127.0.0.1) port 8080 (#0)
> GET / HTTP/1.1
> Host: 127.0.0.1:8080
> User-Agent: curl/7.81.0
> Accept: */*
> 
* Mark bundle as not supporting multiuse
< HTTP/1.1 200 OK
< Date: Wed, 15 Jul 2026 08:04:33 GMT
< Server: Apache/2.4.68 (Debian)
< X-Powered-By: PHP/8.3.32
< Link: ; rel="https://api.w.org/"
< Link: ; rel="alternate"; title="JSON"; type="application/json"
< Link: ; rel=shortlink
=== finished ===