Compare commits

..

No commits in common. "8dc085c6a0263d9ce5d1dcc5128c03bd6d10f4ae" and "0cd058ccbb89009535e57b66ae393d7ac9cd0b0d" have entirely different histories.

3 changed files with 8 additions and 3 deletions

View file

@ -1,2 +0,0 @@
#!/bin/bash
docker buildx build --platform linux/amd64 -t meowgit.nekoea.red/nihonium/forgejo-runner:latest -f ./Dockerfiles/Dockerfile_forgejo-runner . --push

View file

@ -27,7 +27,7 @@ services:
# - pgadmin_data:/var/lib/pgadmin
nyanimedb:
image: meowgit.nekoea.red/nihonium/nyanimedb:latest
image: nyanimedb:latest
container_name: nyanimedb
restart: always
environment:

View file

@ -0,0 +1,7 @@
FROM ubuntu:22.04
WORKDIR /app
COPY --chmod=755 nyanimedb /app
COPY templates /app/templates
EXPOSE 8080
ENTRYPOINT ["/app/nyanimedb"]