Files
ushort/docker-compose.yml
T
2026-03-17 15:45:46 +08:00

13 lines
235 B
YAML

services:
urlshort:
build:
context: .
dockerfile: Dockerfile
ports:
- "8080:8080"
volumes:
# Persist the SQLite database outside the container
- ./data:/app/data
restart: unless-stopped