diff --git a/scripts/deploy_containers.py b/scripts/deploy_containers.py index 18caaf6..a1decfd 100644 --- a/scripts/deploy_containers.py +++ b/scripts/deploy_containers.py @@ -27,7 +27,7 @@ def run_deployment(tag = None): print(f"Running deployment for {tag}..") res = subprocess.run(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE) lines = res.stdout.decode(encoding='utf-8').split("\n") - print(lines) + print(lines, command) success = True for ind, line in enumerate(lines): diff --git a/tasks/dozzle.yml b/tasks/dozzle.yml deleted file mode 100644 index 1b02532..0000000 --- a/tasks/dozzle.yml +++ /dev/null @@ -1,27 +0,0 @@ ---- -- name: Pull latest Dozzle Docker Image - docker_image: - name: amir20/dozzle - tag: latest - source: pull - -- name: Create Dozzle Docker Container - docker_container: - name: dozzle - image: amir20/dozzle:latest - restart_policy: unless-stopped - recreate: true - networks: - - name: homelab - volumes: - - "/var/run/docker.sock:/var/run/docker.sock" - env: - DOZZLE_ENABLE_ACTIONS: "{{ DOZZLE_ACTIONS }}" - DOZZLE_ENABLE_SHELL: "{{ DOZZLE_SHELL }}" - labels: - traefik.enable: "true" - traefik.http.routers.dz.rule: Host(`logs.fntz.net`) - traefik.http.routers.dz.entrypoints: webSecure - traefik.http.routers.dz.tls.certresolver: letsencrypt - traefik.http.services.dz.loadbalancer.server.port: "8080" - traefik.http.routers.dz.middlewares: tinyauth