ansible-docker-systemd-service icon indicating copy to clipboard operation
ansible-docker-systemd-service copied to clipboard

Ansible role for creating Systemd services for docker containers

Results 12 ansible-docker-systemd-service issues
Sort by recently updated
recently updated
newest added

If the `ansible_ssh_user` is different from root (but still a sudoer), the created systemd service fails to start with this error `docker: open /etc/default/: permission denied.` My current workaround is...

Have some kind of automated testing to avoid things like #20 ## Ideas - use [BATS](https://github.com/bats-core/bats-core)

help wanted

Hello, I have found there is an open issue against ansible for handlers not working when using `include_role` - See https://github.com/ansible/ansible/issues/20493 It was documented as a Note in the documentation...

Basically I'm proposing to add a flag that changes the unit file to contain ``` TimeoutStartSec=0 ExecStartPre=-/usr/bin/docker kill image ExecStartPre=-/usr/bin/docker rm image ExecStartPre=/usr/bin/docker pull user/image ``` as opposed to the...

enhancement
good-first-issue

Hi, I'm currently facing the task of generating a few containers through [service templates](https://www.man7.org/linux/man-pages/man5/systemd.service.5.html#SERVICE_TEMPLATES). Is service templates supported in this project? If yes, how exactly do I have to do...

https://keepachangelog.com/en/1.0.0/

help wanted

This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more.[View this repository on the Mend.io Web Portal](https://developer.mend.io/github/mhutter/ansible-docker-systemd-service). ## Open These updates have all been...

## Context This Ansible module uses its own parameters to support various `docker run` command line arguments. Out of those, multiple types are used: * Single strings * Lists Examples...

## Checklist - [X] Keep pull requests small so they can be easily reviewed. - [X] Link this PR to related issues. --- Changes: - Removed dynamic naming of handlers....

## Context During execution, these messages are in the output: ``` task path: /my/path/.ansible/roles/mhutter.docker-systemd-service/tasks/main.yml:6 redirecting (type: modules) ansible.builtin.docker_image to community.docker.docker_image task path: /my/path/.ansible/roles/mhutter.docker-systemd-service/tasks/install.yml:12 redirecting (type: modules) ansible.builtin.docker_image to community.docker.docker_image redirecting...