-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.nas_deploy.env.example
More file actions
39 lines (30 loc) · 965 Bytes
/
Copy path.nas_deploy.env.example
File metadata and controls
39 lines (30 loc) · 965 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# NAS Deployment Configuration Template
# Copy this file to .nas_deploy.env and fill in the actual values
# NAS connection settings
# Host/IP or hostname of your NAS
NAS_HOST=your_nas_hostname_or_ip
# SSH user on NAS (must be in docker group)
NAS_USER=your_nas_user
# SSH alias from ~/.ssh/config (optional)
NAS_ALIAS=nas
# Deployment paths on NAS
# Directory for deployed application files
APP_DIR=/volume1/docker/apps/videograbberbot
# Bare git repository for receiving pushes
GIT_DIR=/volume1/git/videograbberbot.git
# Git branch to deploy
BRANCH=main
# Example configuration for Synology DS423+:
# NAS_HOST=AAB_UAE
# NAS_USER=dockeruser
# NAS_ALIAS=nas
# APP_DIR=/volume1/docker/apps/videograbberbot
# GIT_DIR=/volume1/git/videograbberbot.git
# BRANCH=main
# SSH Configuration Example (~/.ssh/config):
# Host nas
# HostName AAB_UAE
# User dockeruser
# IdentityFile ~/.ssh/id_ed25519
# ServerAliveInterval 60
# ServerAliveCountMax 3