1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
version: '3.8' services: runarium: build: . ports: - "3000:3000" environment: - RUST_LOG=info # Optional: limit resources deploy: resources: limits: memory: 2G reservations: memory: 512M restart: unless-stopped