Files
backend/docker-compose.yml
T
austnv 82f86ef8ee update docker
working process on server utilize ~200 Mb RAM
2026-06-14 22:11:03 +03:00

20 lines
451 B
YAML

services:
backend:
build: .
container_name: uvpn-backend
expose:
- 8000
networks:
- remnawave-network
restart: unless-stopped
healthcheck:
test: ["CMD", "python", "-c", "import urllib.request; urllib.request.urlopen('http://127.0.0.1:8000/api/v1/health', timeout=3).read()"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s
networks:
remnawave-network:
external: true