Deploy CI-built registry image
All checks were successful
Docker / build-and-push (push) Successful in 47s

This commit is contained in:
Fredrik Johansson
2026-07-20 20:03:54 +02:00
parent 61e6b256d5
commit 6b06e5a6ce
2 changed files with 7 additions and 4 deletions

View File

@@ -35,8 +35,11 @@ Keyboard: `1``4` selects a route, `Enter` stamps or continues, `?` opens help
## Deployment ## Deployment
The production image is a static Vite build served by nginx. The production image is a static Vite build served by nginx. A push to `main` triggers the Gitea Actions workflow, which builds and publishes `repo.explewd.com/explewd/retur:latest` plus an immutable short-SHA tag. The deployment host pulls that image through Docker Compose.
```bash ```bash
docker compose up -d --build docker compose pull
docker compose up -d
``` ```
**Live:** [retur.games.goonk.se](https://retur.games.goonk.se)

View File

@@ -1,8 +1,8 @@
services: services:
retur: retur:
build: . image: repo.explewd.com/explewd/retur:latest
image: retur:latest
container_name: retur container_name: retur
restart: unless-stopped restart: unless-stopped
pull_policy: always
ports: ports:
- "${HOST_PORT:-5694}:80" - "${HOST_PORT:-5694}:80"