Replies: 3 comments 1 reply
-
Hi @cf-sewe, are you using snap-installed Semaphore? I'm looking to install pymysql for mysql module, and was wondering the same re pip installs. |
Beta Was this translation helpful? Give feedback.
-
Edit: this could become a non-issue if this PR is merged I had the same problem and ended up making a barebones container that uses Container: Example services:
semaphore:
name: semaphore
ports:
- 3000:3000
image: ghcr.io/andygeorge/semaphore-pip-ansible:latest # alias for semaphore-pip-ansible:ansible-8.3.0
# image: docker.io/semaphoreui/semaphore:latest On a running container:
|
Beta Was this translation helpful? Give feedback.
-
We really need a proper process for installing Python and also Galaxy dependencies. The approach by @andygeorge is already a start, but it needs to be extended. |
Beta Was this translation helpful? Give feedback.
-
As Ansible is currently on the pretty old 2.10 branch in the provided docker image, do you consider updating it to 2.13 or newer?
There are already issues in our environment, where the main Ansible controllers are on 2.13 and the Playbooks are written and tested for that version. For example the notify on blocks feature was introduced only in ansible-core 2.11.
And another small thing which I just noticed, how are Python module requirements usually handled with Semaphore?
Like custom pip module installs (for example
dnspython
for ansible dig lookup)?Beta Was this translation helpful? Give feedback.
All reactions