mirror of https://github.com/VERT-sh/VERT.git
21 lines
676 B
YAML
21 lines
676 B
YAML
services:
|
|
vert:
|
|
container_name: vert
|
|
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}
|
|
- PUB_VERTD_URL=${PUB_VERTD_URL:-https://vertd.vert.sh}
|
|
- PORT=${PORT:-3000}
|
|
build:
|
|
context: .
|
|
args:
|
|
PUB_HOSTNAME: ${PUB_HOSTNAME:-vert.sh}
|
|
PUB_PLAUSIBLE_URL: ${PUB_PLAUSIBLE_URL:-https://plausible.example.com}
|
|
PUB_ENV: ${PUB_ENV:-production}
|
|
PUB_VERTD_URL: ${PUB_VERTD_URL:-https://vertd.vert.sh}
|
|
restart: unless-stopped
|
|
ports:
|
|
- ${PORT:-3000}:80
|