mirror of
https://github.com/Darkrock-Studios/hammer-editor.git
synced 2026-08-25 17:31:43 +00:00
Adds a `timezone` config setting, with `HAMMER_TIMEZONE` and `TZ` as environment-variable fallbacks, applied at startup so both rendered page timestamps and log lines use it.
68 lines
2.3 KiB
YAML
68 lines
2.3 KiB
YAML
name: hammer
|
|
|
|
services:
|
|
hammer:
|
|
image: ghcr.io/darkrock-studios/hammer-editor/server:latest
|
|
|
|
# To build locally instead: run `./gradlew :server:installDist` from the repo
|
|
# root, then swap `image:` above for this.
|
|
# build:
|
|
# context: ..
|
|
# dockerfile: docker/Dockerfile
|
|
|
|
container_name: hammer-server
|
|
restart: unless-stopped
|
|
|
|
# The JVM handles SIGTERM itself; this only reaps orphans from the embedded
|
|
# PostgreSQL process tree.
|
|
init: true
|
|
|
|
ports:
|
|
# Loopback by default: this connector is plain HTTP, and published ports
|
|
# bypass host firewall rules. Set HAMMER_HTTP_BIND=0.0.0.0 only if nothing
|
|
# untrusted can reach the host. HAMMER_HTTP_PORT moves the host-side port.
|
|
#
|
|
# Clients only speak HTTPS and will not connect to this port. Terminate TLS
|
|
# at a reverse proxy in front of it, or configure sslCert and publish 443.
|
|
- "${HAMMER_HTTP_BIND:-127.0.0.1}:${HAMMER_HTTP_PORT:-8080}:8080"
|
|
|
|
environment:
|
|
# Time zone for web-UI timestamps and log lines, as an IANA zone ID. Defaults
|
|
# to UTC; set TZ in your shell or a .env file next to this compose file to
|
|
# change it. `timezone` in config.toml overrides this.
|
|
TZ: ${TZ:-UTC}
|
|
|
|
# Uncomment alongside the postgres service below.
|
|
# depends_on:
|
|
# postgres:
|
|
# condition: service_healthy
|
|
|
|
volumes:
|
|
- hammer-data:/data
|
|
# Optional: manage the config on the host. Copy config.example.toml first.
|
|
# - ./config.toml:/data/hammer_data/config.toml:ro
|
|
|
|
# Only needed for `[storage] type = "remote"`; storage defaults to an
|
|
# in-process PostgreSQL. Uncomment the `depends_on` above alongside it.
|
|
# postgres:
|
|
# image: postgres:18
|
|
# container_name: hammer-postgres
|
|
# restart: unless-stopped
|
|
# environment:
|
|
# POSTGRES_DB: hammer
|
|
# POSTGRES_USER: hammer
|
|
# POSTGRES_PASSWORD: change-me
|
|
# volumes:
|
|
# # postgres 18+ keeps PGDATA in a versioned subdirectory of this path;
|
|
# # mounting at /var/lib/postgresql/data instead aborts startup.
|
|
# - hammer-pgdata:/var/lib/postgresql
|
|
# healthcheck:
|
|
# test: ["CMD-SHELL", "pg_isready -U hammer"]
|
|
# interval: 10s
|
|
# timeout: 5s
|
|
# retries: 5
|
|
|
|
volumes:
|
|
hammer-data:
|
|
# Uncomment alongside the postgres service above.
|
|
# hammer-pgdata:
|