https://github.com/neotoxic-off/harbour
🛟 Harbour is your rust powered port for container management
https://github.com/neotoxic-off/harbour
Last synced: 17 days ago
JSON representation
🛟 Harbour is your rust powered port for container management
- Host: GitHub
- URL: https://github.com/neotoxic-off/harbour
- Owner: Neotoxic-off
- License: mit
- Created: 2025-03-16T16:24:57.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2025-03-23T18:00:09.000Z (11 months ago)
- Last Synced: 2025-03-23T19:19:11.983Z (11 months ago)
- Language: Rust
- Homepage:
- Size: 25.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Harbour
🛟 Harbour is your rust powered port for container management





## Install
```
git clone https://github.com/Neotoxic-off/harbour
```
## Usage
```
🛟 Harbour is your rust powered port for container management
Usage: harbour [OPTIONS] --service
Options:
-s, --service
-v, --volume
-n, --network
-i, --image
-p, --ports
-r, --restart [default: no] [possible values: no, always, on-failure, unless-stopped]
-o, --output [default: docker-compose.yml]
-h, --help Print help
-V, --version Print version
```
## Example
```BASH
./harbour --service test_service -n test_network --volume "./tests:/app/tests"
```
```YAML
# This file has been auto generated by Harbour
# Build date: 2025-03-25T16:15:11.023405795+01:00
services:
test_service:
build: test_service
volumes:
- ./tests:/app/tests
networks:
- test_network
restart: no
networks:
test_network:
driver: bridge
```
## Todo
- Store config
- Reuse previous config stored
- Init project multi services
- Scan Dockerfile to init docker compose