19 lines
446 B
YAML
19 lines
446 B
YAML
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:
|