mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-23 20:35:24 +01:00
Modern UI for Ansible, Terraform, OpenTofu, PowerShell and other DevOps tools.
bin | ||
lib | ||
playbooks | ||
public | ||
.bowerrc | ||
.gitignore | ||
bower.json | ||
Dockerfile | ||
LICENSE | ||
package.json | ||
README.md | ||
Vagrantfile |
semaphore
Open Source Alternative to Ansible Tower
Features
The basics of Ansible Tower, but in addition:
- Fast, Simple interface (not having to submit a million forms to get something simple done)
- Task output is streamed live via websocket
- Create inventories per playbook
- Add rsa keys (to authenticate git repositories)
- Run playbooks against specified hosts
- Multiple Users support
Docker quickstart
- Get Docker
- Run redis
docker run -d \
--name=redisio \
-v /var/lib/redisio:/var/lib/redis \
-p 127.0.0.1:6379:6379 \
castawaylabs/redis-docker
- Run mongodb
docker run -d \
--name=mongodb \
-v /var/lib/mongodb:/var/lib/mongodb \
-p 127.0.0.1:6379:6379 \
castawaylabs/mongo-docker
- Run semaphore
docker run -d \
--name=semaphroe \
--restart=always \
--link redisio:redis \
--link mongodb:mongo \
-p 80:80 \
castawaylabs/semaphore
Development steps:
Install requirements:
- node.js / io.js
- an isolated environment (e.g. Docker / Vagrant)
- ansible
- mongodb & redis
Initial Login
Email: 'admin@semaphore.local'
Password: 'CastawayLabs'
Environment Variables
Use these variables to override the config.
Variable Name | Description | Default Value |
---|---|---|
PORT | Web Port | 80 |
REDIS_PORT | Redis Port | 6379 |
REDIS_HOST | Redis Hostname | 127.0.0.1 |
REDIS_KEY | Redis auth key | |
BUGSNAG_KEY | Bugsnag API key | |
SMTP_USER | Mandrill smtp username | |
SMTP_PASS | Mandrill smtp password | |
MONGODB_URL | Mongodb URL | mongodb://127.0.0.1/semaphore |
Vision and goals
- Be able to specify environment information per playbook / per task
- Schedule jobs
- Email alerts
1199a52... Update site layout
Note to Ansible guys
Thanks very much for making Ansible, and Ansible Tower. It is a great tool!. Your UI is pretty horrible though, and so we'd be happy if you could learn and use parts of this tool in your Tower.
It would be amazing if this could be your Community Edition
of Ansible Tower.
License
MIT