Compare commits

8 Commits

Author SHA1 Message Date
Robert Ose
9f7e6db261 test 2025-12-17 12:53:48 +01:00
sotos
bb88b190ee update
Some checks failed
CI/CD Pipeline / lint (push) Failing after 18s
CI/CD Pipeline / deploy (push) Successful in 1m24s
2025-12-17 12:14:53 +01:00
sotos
7f100d85d1 update
Some checks failed
CI/CD Pipeline / lint (push) Has been cancelled
CI/CD Pipeline / deploy (push) Successful in 1m15s
2025-12-17 11:35:01 +01:00
sotos
6931df8463 Update
Some checks failed
CI/CD Pipeline / lint (push) Failing after 18s
CI/CD Pipeline / deploy (push) Failing after 39s
2025-12-17 11:32:59 +01:00
sotos
a339ad8d9c update
Some checks failed
CI/CD Pipeline / lint (push) Failing after 18s
CI/CD Pipeline / deploy (push) Failing after 56s
2025-12-17 11:28:21 +01:00
sotos
a975f69891 Update
Some checks failed
CI/CD Pipeline / lint (push) Failing after 18s
CI/CD Pipeline / deploy (push) Failing after 1m23s
2025-12-17 11:13:38 +01:00
sotos
fa8afa87e5 Merge branch 'main' of https://dns.s-martika.com/smartika/Wordpress-Ansible
Some checks failed
CI/CD Pipeline / lint (push) Failing after 19s
CI/CD Pipeline / deploy (push) Failing after 47s
2025-12-17 11:03:39 +01:00
sotos
46582b611d Update 2025-12-17 11:03:08 +01:00
6 changed files with 14 additions and 9 deletions

View File

@@ -3,7 +3,7 @@ name: CI/CD Pipeline
"on":
push:
branches: [main, flip_dev]
branches: [main, flip_dev, hannes]
jobs:
lint:

View File

@@ -1,4 +1,3 @@
---
- hosts: all
become: true
vars:
@@ -6,4 +5,4 @@
snake_image: dns.s-martika.com/smartika/snake-game:2.0
roles:
- docker/snake
- role: docker/snake

View File

@@ -3,7 +3,7 @@
gitea_user: smartika
gitea_token: "idNu783r4ub7ZXi"
snake_image: dns.s-martika.com/smartika/snake-game
snake_tag: "1.0"
snake_image: dns.s-martika.com/smartika/snake-game:2.0
app_dir: /opt/docker/snake
snake_container_name: snake-game
snake_port: 8080

View File

@@ -2,7 +2,7 @@
version: "3.8"
services:
snake:
image: dns.s-martika.com/smartika/snake-game:1.0
image: dns.s-martika.com/smartika/snake-game:2.0
container_name: snake-game777
restart: unless-stopped
ports:

View File

@@ -1,9 +1,12 @@
---
# Ensure app directory exists
- name: Create app directory
- name: Ensure app directory exists
file:
path: "{{ app_dir }}"
state: directory
owner: root
group: root
mode: '0755'
# Login to private registry
- name: Login to private registry
@@ -28,3 +31,6 @@
ports:
- "8080:80" # host port → container port
pull: yes

View File

@@ -17,7 +17,7 @@ services:
ports:
- "9113:9113"
environment:
- NGINX_STATUS_URL=http://nginx:8080/metrics
- NGINX_STATUS_URL=http://nginx:8081/status
networks:
- snake_net