short-url/docker-compose.yaml
2024-11-30 08:19:57 +08:00

10 lines
195 B
YAML

version: "3"
services:
url-shortener:
container_name: url-shortener
image: url-shortener:v0.0.20
restart: always
volumes:
- ./data:/app/data
ports:
- "8567:3000"