mirror of https://github.com/VERT-sh/VERT.git
feat: coolify support for docker compose
This commit is contained in:
parent
582f99588f
commit
e25b0fc720
|
@ -1,13 +1,18 @@
|
|||
services:
|
||||
vert:
|
||||
container_name: vert
|
||||
image: VERT-sh/vert:latest # will build under this name
|
||||
image: VERT-sh/vert:latest
|
||||
environment:
|
||||
- PUB_HOSTNAME=${PUB_HOSTNAME:-vert.sh}
|
||||
- PUB_PLAUSIBLE_URL=${PUB_PLAUSIBLE_URL:-https://plausible.example.com}
|
||||
- PUB_ENV=${PUB_ENV:-production}
|
||||
- PORT=${PORT:-3000}
|
||||
build:
|
||||
context: .
|
||||
args:
|
||||
PUB_HOSTNAME: "vert.sh"
|
||||
PUB_PLAUSIBLE_URL: "https://plausible.example.com"
|
||||
PUB_ENV: "production"
|
||||
PUB_HOSTNAME: ${PUB_HOSTNAME:-vert.sh}
|
||||
PUB_PLAUSIBLE_URL: ${PUB_PLAUSIBLE_URL:-https://plausible.example.com}
|
||||
PUB_ENV: ${PUB_ENV:-production}
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 3000:80
|
||||
- ${PORT:-3000}:80
|
||||
|
|
Loading…
Reference in New Issue