Compare commits
	
		
			5 Commits
		
	
	
		
			11049a04d8
			...
			824e96091f
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 824e96091f | |||
| 681fc0f781 | |||
| 0aeebb5d98 | |||
| e2a4506f94 | |||
| 9a46b316df | 
| @ -10,6 +10,6 @@ jobs: | |||||||
|       - name: Check out repo |       - name: Check out repo | ||||||
|         uses: actions/checkout@v3 |         uses: actions/checkout@v3 | ||||||
|       - run: python3 -m venv venv |       - run: python3 -m venv venv | ||||||
|       - run: venv/bin/pip --disable-pip-version-check install ansible==7.2.0 ansible-lint==6.16.1 > /dev/null 2> /dev/null |       - run: venv/bin/pip --disable-pip-version-check install ansible==9.6.0 ansible-lint==24.2.2 > /dev/null 2> /dev/null | ||||||
|       - run: venv/bin/ansible-lint -c .ansible-lint ansible |       - run: venv/bin/ansible-lint -c .ansible-lint ansible | ||||||
|   # TODO: Reimplement ansible-play --check step from old drone config |   # TODO: Reimplement ansible-play --check step from old drone config | ||||||
|  | |||||||
| @ -17,3 +17,7 @@ ansible-lint --offline | |||||||
| ``` | ``` | ||||||
| 
 | 
 | ||||||
| to avoid checking for a new version every single run. | to avoid checking for a new version every single run. | ||||||
|  | 
 | ||||||
|  | ## TODO | ||||||
|  | 
 | ||||||
|  | - [ ] Migrate to `community.docker.docker_compose_v2` (`v1` is deprecated) | ||||||
|  | |||||||
| @ -109,11 +109,11 @@ | |||||||
|     # that Gitea is reachable before those configurations are deployed. |     # that Gitea is reachable before those configurations are deployed. | ||||||
|     - name: Set up caddy and gitea containers |     - name: Set up caddy and gitea containers | ||||||
|       become: true |       become: true | ||||||
|       community.docker.docker_compose: |       community.docker.docker_compose_v2: | ||||||
|         project_src: "/etc/pbri/docker/{{ item.name }}" |         project_src: "/etc/pbri/docker/{{ item.name }}" | ||||||
|         state: "{{ item.state }}" |         state: "{{ item.state }}" | ||||||
|         build: true |         build: "always" | ||||||
|         debug: true |         pull: "always" | ||||||
|       loop: |       loop: | ||||||
|         - name: caddy |         - name: caddy | ||||||
|           state: present |           state: present | ||||||
| @ -132,11 +132,11 @@ | |||||||
|       delay: 5  # Retry every 5 seconds |       delay: 5  # Retry every 5 seconds | ||||||
|     - name: Set up other containers |     - name: Set up other containers | ||||||
|       become: true |       become: true | ||||||
|       community.docker.docker_compose: |       community.docker.docker_compose_v2: | ||||||
|         project_src: "/etc/pbri/docker/{{ item.name }}" |         project_src: "/etc/pbri/docker/{{ item.name }}" | ||||||
|         state: "{{ item.state }}" |         state: "{{ item.state }}" | ||||||
|         build: true |         build: "always" | ||||||
|         debug: true |         pull: "always" | ||||||
|       loop: |       loop: | ||||||
|         - name: drone |         - name: drone | ||||||
|           state: present |           state: present | ||||||
| @ -146,10 +146,11 @@ | |||||||
|           state: present |           state: present | ||||||
|         - name: utoy |         - name: utoy | ||||||
|           state: present |           state: present | ||||||
|         - name: score |  | ||||||
|           state: present |  | ||||||
| 
 | 
 | ||||||
|  |         # Keep these to ensure they're down | ||||||
|         - name: factorio |         - name: factorio | ||||||
|           state: absent |           state: absent | ||||||
|         - name: glebby |         - name: glebby | ||||||
|           state: absent |           state: absent | ||||||
|  |         - name: score | ||||||
|  |           state: absent | ||||||
|  | |||||||
| @ -44,7 +44,3 @@ plantuml.pbrinkmeier.de { | |||||||
| utoy.beany.club { | utoy.beany.club { | ||||||
|     reverse_proxy utoy:3000 |     reverse_proxy utoy:3000 | ||||||
| } | } | ||||||
| 
 |  | ||||||
| score.brocke.net { |  | ||||||
|     reverse_proxy score:8080 |  | ||||||
| } |  | ||||||
|  | |||||||
| @ -1,5 +1,3 @@ | |||||||
| version: "3" |  | ||||||
| 
 |  | ||||||
| services: | services: | ||||||
|   # Webserver for static files and reverse proxy |   # Webserver for static files and reverse proxy | ||||||
|   web: |   web: | ||||||
|  | |||||||
| @ -1,8 +1,6 @@ | |||||||
| version: "3" |  | ||||||
| 
 |  | ||||||
| services: | services: | ||||||
|   codi: |   codi: | ||||||
|     image: hackmdio/hackmd:2.4.2 |     image: hackmdio/hackmd:2.5.4 | ||||||
|     user: hackmd |     user: hackmd | ||||||
|     environment: |     environment: | ||||||
|       # Admin stuff |       # Admin stuff | ||||||
|  | |||||||
| @ -1,5 +1,3 @@ | |||||||
| version: "3" |  | ||||||
| 
 |  | ||||||
| services: | services: | ||||||
|   drone: |   drone: | ||||||
|     image: drone/drone:2 |     image: drone/drone:2 | ||||||
|  | |||||||
| @ -1,5 +1,3 @@ | |||||||
| version: "3" |  | ||||||
| 
 |  | ||||||
| services: | services: | ||||||
|   gitea: |   gitea: | ||||||
|     image: pbrinkmeier/factorio |     image: pbrinkmeier/factorio | ||||||
|  | |||||||
| @ -1,5 +1,3 @@ | |||||||
| version: "3" |  | ||||||
| 
 |  | ||||||
| services: | services: | ||||||
|   gitea: |   gitea: | ||||||
|     image: gitea/gitea:1.20.3 |     image: gitea/gitea:1.20.3 | ||||||
|  | |||||||
| @ -1,5 +1,3 @@ | |||||||
| version: "3" |  | ||||||
| 
 |  | ||||||
| services: | services: | ||||||
|   glebby: |   glebby: | ||||||
|     image: git.pbrinkmeier.de/paul/glebby:1.1-prod |     image: git.pbrinkmeier.de/paul/glebby:1.1-prod | ||||||
|  | |||||||
| @ -1,5 +1,3 @@ | |||||||
| version: "3" |  | ||||||
| 
 |  | ||||||
| services: | services: | ||||||
|   jupyter: |   jupyter: | ||||||
|     image: git.pbrinkmeier.de/paul/jup:1.5 |     image: git.pbrinkmeier.de/paul/jup:1.5 | ||||||
|  | |||||||
							
								
								
									
										3
									
								
								docker/docker/score/README.md
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								docker/docker/score/README.md
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,3 @@ | |||||||
|  | # score | ||||||
|  | 
 | ||||||
|  | Seems to not be maintained anymore. | ||||||
| @ -1,5 +1,3 @@ | |||||||
| version: "3" |  | ||||||
| 
 |  | ||||||
| services: | services: | ||||||
|   score: |   score: | ||||||
|     image: ghcr.io/lbrocke/score:v1.0.2 |     image: ghcr.io/lbrocke/score:v1.0.2 | ||||||
|  | |||||||
| @ -1,5 +1,3 @@ | |||||||
| version: "3" |  | ||||||
| 
 |  | ||||||
| services: | services: | ||||||
|   utoy: |   utoy: | ||||||
|     image: git.pbrinkmeier.de/paul/utoy:0.6 |     image: git.pbrinkmeier.de/paul/utoy:0.6 | ||||||
|  | |||||||
							
								
								
									
										12
									
								
								flake.lock
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										12
									
								
								flake.lock
									
									
									
										generated
									
									
									
								
							| @ -5,11 +5,11 @@ | |||||||
|         "systems": "systems" |         "systems": "systems" | ||||||
|       }, |       }, | ||||||
|       "locked": { |       "locked": { | ||||||
|         "lastModified": 1685518550, |         "lastModified": 1710146030, | ||||||
|         "narHash": "sha256-o2d0KcvaXzTrPRIo0kOLV0/QXHhDQ5DTi+OxcjO8xqY=", |         "narHash": "sha256-SZ5L6eA7HJ/nmkzGG7/ISclqe6oZdOZTNoesiInkXPQ=", | ||||||
|         "owner": "numtide", |         "owner": "numtide", | ||||||
|         "repo": "flake-utils", |         "repo": "flake-utils", | ||||||
|         "rev": "a1720a10a6cfe8234c0e93907ffe81be440f4cef", |         "rev": "b1d9ab70662946ef0850d488da1c9019f3a9752a", | ||||||
|         "type": "github" |         "type": "github" | ||||||
|       }, |       }, | ||||||
|       "original": { |       "original": { | ||||||
| @ -20,11 +20,11 @@ | |||||||
|     }, |     }, | ||||||
|     "nixpkgs": { |     "nixpkgs": { | ||||||
|       "locked": { |       "locked": { | ||||||
|         "lastModified": 1686259070, |         "lastModified": 1719936093, | ||||||
|         "narHash": "sha256-bJ2TqJHMdU27o3+AlYzsDooUzneFHwvK5LaRv5JYit4=", |         "narHash": "sha256-oe5wiTSfxeDLisswomHcMGMV01hkBGuCJyMzjqCDdPY=", | ||||||
|         "owner": "nixos", |         "owner": "nixos", | ||||||
|         "repo": "nixpkgs", |         "repo": "nixpkgs", | ||||||
|         "rev": "8a7d5c039cacc83bd1926aaabc04d541e04a1460", |         "rev": "f593f9129f3cbf39261a8bbc86f6b4ceb4624881", | ||||||
|         "type": "github" |         "type": "github" | ||||||
|       }, |       }, | ||||||
|       "original": { |       "original": { | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user