7a7b6408a3
Coolify deployment failed with "port is already allocated" since 8080 was already bound by another resource on the host. Container still listens on 8080 internally; host mapping moved to 8090.
12 lines
150 B
YAML
12 lines
150 B
YAML
services:
|
|
app:
|
|
build: .
|
|
ports:
|
|
- "8090:8080"
|
|
volumes:
|
|
- data:/app/server/data
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
data:
|