vert/docker-compose.yml

19 lines
551 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}
- 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}
restart: unless-stopped
ports:
- ${PORT:-3000}:80