docker workflow
Build & Push Docker Image / Build and push (push) Failing after 17m10s

This commit is contained in:
Oliver Walter
2026-06-06 16:14:02 +02:00
parent 5f43c19878
commit 4d1133a33e
8 changed files with 326 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
services:
toollist:
build:
context: .
dockerfile: Dockerfile
ports:
- "3000:3000"
volumes:
# Persist the TOML data file across container restarts/upgrades.
# On first run the seed data baked into the image is used;
# subsequent writes go straight to this named volume.
- toollist-data:/app/data
environment:
LEPTOS_ENV: PROD
restart: unless-stopped
volumes:
toollist-data: