All checks were successful
Deploy / deploy (push) Successful in 57s
podman-compose was rebuilding the image on every service restart using the Containerfile, but without --build-arg WEBMENTION_TOKEN. This silently discarded the token that the CI build had baked in. Removing the build: block means restarts reuse the pre-built image tagged by CI. Also removes all temporary debug console.log statements. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
13 lines
267 B
YAML
13 lines
267 B
YAML
name: adrian-altner-de
|
|
|
|
services:
|
|
website:
|
|
image: localhost/adrian-altner.de:latest
|
|
container_name: adrian-altner.de
|
|
ports:
|
|
- "4321:4321"
|
|
environment:
|
|
NODE_ENV: production
|
|
HOST: 0.0.0.0
|
|
PORT: 4321
|
|
restart: unless-stopped
|