13 lines
482 B
YAML
13 lines
482 B
YAML
version: "3"
|
|
|
|
services:
|
|
routeros-config-export:
|
|
image: registry.mgrote.net/oxidized-selfmade:latest
|
|
environment:
|
|
- DEVICE_CONFIGS=device1,username1,/path/to/ssh/key1 device2,username2,/path/to/ssh/key2
|
|
- GIT_REPO_URL=your_git_repo_ssh_url
|
|
- GIT_USERNAME=your_git_username
|
|
- GIT_SSH_KEY=/app/your_git_ssh_key_file
|
|
volumes:
|
|
- /path/to/your_git_ssh_key_file:/app/your_git_ssh_key_file:ro
|
|
# Add any other volumes or configurations needed
|