Semaphore/README.md

52 lines
1.9 KiB
Markdown
Raw Normal View History

2024-06-12 23:12:43 +02:00
# Semaphore UI (formerly Ansible Semaphore)
2016-01-20 20:31:50 +01:00
2024-06-20 08:30:53 +02:00
[![docker](https://img.shields.io/badge/docker_container_configurator-skyblue?style=for-the-badge&logo=docker)](https://semaphoreui.com/install/docker/)
[![patreon](https://img.shields.io/badge/support_semaphore-teal?style=for-the-badge&logo=patreon)](https://www.patreon.com/semaphoreui)
[![telegram](https://img.shields.io/badge/telegram_community-blue?style=for-the-badge&logo=telegram)](https://t.me/semaphoreui)
[![telegram](https://img.shields.io/badge/youtube_channel-red?style=for-the-badge&logo=youtube)](https://www.youtube.com/@semaphoreui)
2021-09-23 20:28:43 +02:00
Semaphore is a modern UI for Ansible, Terraform/OpenTofu, Bash and Pulumi. It lets you easily run Ansible playbooks, get notifications about fails, control access to deployment system.
2021-09-22 21:45:11 +02:00
If your project has grown and deploying from the terminal is no longer for you then Semaphore UI is what you need.
2021-09-22 21:45:11 +02:00
2021-09-25 17:43:57 +02:00
![responsive-ui-phone1](https://user-images.githubusercontent.com/914224/134777345-8789d9e4-ff0d-439c-b80e-ddc56b74fcee.png)
2020-10-03 18:18:33 +02:00
## Installation
### Docker
2022-09-09 20:51:16 +02:00
https://hub.docker.com/r/semaphoreui/semaphore
2022-10-06 11:28:39 +02:00
`docker-compose.yml` for minimal configuration:
```yaml
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)
2022-09-09 20:51:16 +02:00
```
### Other installation methods
2024-06-21 17:17:48 +02:00
https://docs.semaphoreui.com/administration-guide/installation
2021-02-25 08:39:59 +01:00
## Demo
2024-06-25 19:13:41 +02:00
You can test latest version of Semaphore on https://my.semaphore.tech.
2021-02-25 08:39:59 +01:00
2021-09-25 13:01:57 +02:00
## Docs
2024-06-21 17:17:48 +02:00
Admin and user docs: https://docs.semaphoreui.com.
2021-09-25 13:01:57 +02:00
2024-06-21 17:17:48 +02:00
API description: https://semaphoreui.com/api-docs/.