Modern UI for Ansible, Terraform, OpenTofu, PowerShell and other DevOps tools.
Go to file
2024-06-01 16:07:02 +02:00
.devcontainer Create devcontainer.json 2022-11-11 14:40:48 +05:00
.dredd ci: execute dredd without containers 2024-05-04 01:16:31 +02:00
.github ci(docker): use full path of venv 2024-05-27 23:00:47 +02:00
api feat(ldap): use claims like in open id 2024-05-29 21:11:06 +02:00
cli fix: init config in setup 2024-05-26 14:27:40 +02:00
db refactor(be): remove unused field 2024-05-30 14:17:43 +02:00
db_lib Merge pull request #1595 from Ereaey/add_pull_recursive 2024-05-26 22:33:14 +02:00
deployment ci(docker): debug container 2024-06-01 15:15:17 +02:00
examples fix(exmaples): env var 2024-06-01 16:07:02 +02:00
hook_helpers fix(be): move goodman import to separate package to fix tests 2021-08-27 11:58:31 +05:00
pkg feat: move task logger into dedicated package 2024-04-12 12:32:54 +02:00
services fix(runners): pass inventory repo to the runner 2024-05-27 22:00:40 +02:00
util ci(docker): debug container 2024-06-01 15:15:17 +02:00
web ci(docker): move venv from ~ to /opt 2024-05-28 00:45:25 +02:00
.dockerignore chore: add initial dockeringore config 2024-04-28 00:10:30 +02:00
.gitignore feat: rebuild task file and drop version generator 2024-04-28 00:10:27 +02:00
.goreleaser.yml feat: add support for ppc64le 2024-05-08 12:52:29 +02:00
api-docs.yml Merge branch 'develop' into develop 2024-05-20 15:46:18 +02:00
CODE_OF_CONDUCT.md Code of conduct, changelog 2016-04-29 23:47:31 +02:00
config-runner.json fix(runners): add atimic checks 2023-09-20 02:17:41 +02:00
CONTRIBUTING.md docs: describe tests in contribution guide 2023-07-08 14:34:26 +02:00
go.mod chore(deps): bump golang.org/x/net from 0.21.0 to 0.23.0 2024-04-19 13:11:48 +00:00
go.sum chore(deps): bump golang.org/x/net from 0.21.0 to 0.23.0 2024-04-19 13:11:48 +00:00
LICENSE Initial commit 2014-08-23 23:43:31 +01:00
README.md docs: fix tg link 2024-04-08 13:35:24 +02:00
Taskfile.yml ci(docker): remove go build options 2024-06-01 15:30:37 +02:00

Ansible Semaphore

Ansible Semaphore is a modern UI for Ansible. It lets you easily run Ansible playbooks, get notifications about fails, control access to deployment system.

If your project has grown and deploying from the terminal is no longer for you then Ansible Semaphore is what you need.

responsive-ui-phone1

Installation

Full documentation

https://docs.semui.co/administration-guide/installation

Snap

semaphore

sudo snap install semaphore
sudo semaphore user add --admin --name "Your Name" --login your_login --email your-email@examaple.com --password your_password

Docker

https://hub.docker.com/r/semaphoreui/semaphore

docker-compose.yml for minimal configuration:

services:
  semaphore:
    ports:
      - 3000:3000
    image: semaphoreui/semaphore:latest
    environment:
      SEMAPHORE_DB_DIALECT: bolt
      SEMAPHORE_ADMIN_PASSWORD: changeme
      SEMAPHORE_ADMIN_NAME: admin
      SEMAPHORE_ADMIN_EMAIL: admin@localhost
      SEMAPHORE_ADMIN: admin
      TZ: Europe/Berlin
    volumes:
      - /path/to/data/home:/etc/semaphore # config.json location
      - /path/to/data/lib:/var/lib/semaphore # database.boltdb location (Not required if using mysql or postgres)

Demo

You can test latest version of Semaphore on https://demo.semui.co.

Docs

Admin and user docs: https://docs.semui.co.

API description: https://semui.co/api-docs/.

Contributing

If you want to write an article about Ansible or Semaphore, contact @fiftin and we will place your article in our Blog with link to your profile.

PR's & UX reviews are welcome!

Please follow the contribution guide. Any questions, please open an issue.

Support

If you like Ansible Semaphore, you can support the project development on Ko-fi.

License

MIT License

Copyright (c) 2016 Castaway Consulting LLC

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.