services:
postgres:
restart: unless-stopped
image: postgres:14
hostname: postgres
volumes:
- semaphore-postgres:/var/lib/postgresql/data
environment:
POSTGRES_USER: semaphore
POSTGRES_PASSWORD: semaphore
POSTGRES_DB: semaphore
semaphore:
restart: unless-stopped
ports:
- 3000:3000
image: semaphoreui/semaphore:latest
environment:
TZ: Asia/Taipei
SEMAPHORE_DB_USER: semaphore
SEMAPHORE_DB_PASS: semaphore
SEMAPHORE_DB_HOST: postgres
SEMAPHORE_DB_PORT: 5432
SEMAPHORE_DB_DIALECT: postgres
SEMAPHORE_DB: semaphore
SEMAPHORE_PLAYBOOK_PATH: /tmp/semaphore/
SEMAPHORE_ADMIN_PASSWORD: changeme
SEMAPHORE_ADMIN_NAME: admin
SEMAPHORE_ADMIN_EMAIL: admin@localhost
SEMAPHORE_ADMIN: admin
SEMAPHORE_ACCESS_KEY_ENCRYPTION: gs72mPntFATGJs9qK0pQ0rKtfidlexiMjYCH9gWKhTU=
SEMAPHORE_LDAP_ACTIVATED: 'no' # if you wish to use ldap, set to: 'yes'
SEMAPHORE_LDAP_HOST: dc01.local.example.com
SEMAPHORE_LDAP_PORT: '636'
SEMAPHORE_LDAP_NEEDTLS: 'yes'
SEMAPHORE_LDAP_DN_BIND: 'uid=bind_user,cn=users,cn=accounts,dc=local,dc=shiftsystems,dc=net'
SEMAPHORE_LDAP_PASSWORD: 'ldap_bind_account_password'
SEMAPHORE_LDAP_DN_SEARCH: 'dc=local,dc=example,dc=com'
SEMAPHORE_LDAP_SEARCH_FILTER: "(\u0026(uid=%s)(memberOf=cn=ipausers,cn=groups,cn=accounts,dc=local,dc=example,dc=com))"
depends_on:
- postgres
volumes:
semaphore-postgres:
semaphore-44:~# head -c32 /dev/urandom | base64 EHLA/hOR6YQFrMhsXpfyApgKcT3/kvVxbQR/dGu0aD4=
docker compose up -d{"ansible_ssh_common_args":"'-o StrictHostKeyChecking=no'"}
[all:vars] ansible_ssh_common_args='-o StrictHostKeyChecking=no' :
apk add python3semaphore migrate --undo-to 2.16.100執行訊息
b4f992d8e0a7:~$ semaphore migrate --undo-to 2.16.100 Loading config Validating config [ROLLBACK] > drop table project__template_role [ROLLBACK] > drop table role; [ROLLBACK] > alter table project__view drop column `type` [ROLLBACK] > alter table project__view drop column `hidden` [ROLLBACK] > alter table project__view drop column `filter` [ROLLBACK] > alter table project__view drop column `sort_column` [ROLLBACK] > alter table project__view drop column `sort_reverse`; Rollback Finished Postgres semaphore@postgres semaphore