Files
logistics_support_tool/docker-compose-example.yml

16 lines
404 B
YAML

---
services:
lst_backend:
build:
context: .
dockerfile: ./backend/Dockerfile
no_cache: true
image: git.tuffraid.net/cowch/logistics_support_tool:latest
container_name: lst_backend
volumes:
- /path/to/backend/data:/data
ports:
- "8080:8080"
restart: unless-stopped
pull_policy: never