Changes the Docker Compose configuration to expose the application service on host port 8012. This adjusts the external access point, while the application continues to run internally on port 8080.
7 lines
89 B
YAML
7 lines
89 B
YAML
services:
|
|
app:
|
|
build: .
|
|
ports:
|
|
- "8012:8080"
|
|
restart: unless-stopped
|