Fix port mapping syntax in Docker Compose configuration
This commit is contained in:
parent
14ea341370
commit
d9b4185097
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ services:
|
|||
# build: . # uncomment to build from source
|
||||
image: ghcr.io/linkwarden/linkwarden:latest # comment to build from source
|
||||
ports:
|
||||
- ${PORT-3000}:3000
|
||||
- ${PORT-3000}:${PORT-3000}
|
||||
volumes:
|
||||
- /docker/linkwarden/data:/data/data
|
||||
depends_on:
|
||||
|
|
Reference in a new issue