random stuff
Some checks failed
build / build (push) Failing after 1s

This commit is contained in:
2025-08-27 22:37:15 +02:00
parent 359bbfc670
commit 6ad2ec2d4e
3 changed files with 6 additions and 21 deletions

View File

@ -7,15 +7,15 @@ jobs:
build: build:
runs-on: remote runs-on: remote
steps: steps:
- uses: https://git.simonis.lol/actions/checkout@v4 - uses: https://registry.simonis.lol/actions/checkout@v4
- uses: https://git.simonis.lol/actions/login@v1 - uses: https://registry.simonis.lol/actions/login@v1
with: with:
registry: git.simonis.lol registry: registry.simonis.lol
username: ${{ vars.DOCKER_USER }} username: ${{ vars.DOCKER_USER }}
password: ${{ vars.DOCKER_PW }} password: ${{ vars.DOCKER_PASS }}
- name: build - name: build
run: docker build -t git.simonis.lol/sites/simonis.lol:latest . run: docker build -t registry.simonis.lol/sites/simonis.lol:latest .
- name: push - name: push
run: docker push git.simonis.lol/sites/simonis.lol:latest run: docker push registry.simonis.lol/sites/simonis.lol:latest

View File

@ -1,3 +0,0 @@
FROM nginx:latest
CMD ["nginx", "-g", "daemon off;"]

View File

@ -1,12 +0,0 @@
services:
app:
container_name: simonis.lol
build:
context: .
dockerfile: Dockerfile.dev
restart: none
ports:
- '8080:80'
volumes:
- './src:/usr/share/nginx/html'