mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 05:44:23 +00:00
22 lines
629 B
YAML
22 lines
629 B
YAML
---
|
|
|
|
# Sources:
|
|
# - https://github.com/semaphoreui/semaphore
|
|
# - https://docs.semaphoreui.com/administration-guide/installation#docker
|
|
|
|
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:
|
|
- ./data/home:/etc/semaphore # config.json location
|
|
- ./data/lib:/var/lib/semaphore # database.boltdb location (Not required if using mysql or postgres)
|