Compare commits
No commits in common. "e21dd8610bc692a59c8b17871986c8fa0baa5f34" and "6b04ff20a16c1b68092d04e865eb7024191400ba" have entirely different histories.
e21dd8610b
...
6b04ff20a1
3 changed files with 18 additions and 41 deletions
55
compose.yml
55
compose.yml
|
@ -4,43 +4,20 @@ services:
|
||||||
context: .
|
context: .
|
||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
args:
|
args:
|
||||||
PUBLIC_POCKETBASE_URL: ${PUBLIC_POCKETBASE_URL}
|
PUBLIC_POCKETBASE_URL: https://pb.data.lio.systems
|
||||||
PUBLIC_TITLE: ${PUBLIC_TITLE}
|
PUBLIC_TITLE: Astro Gallery
|
||||||
PUBLIC_DESCRIPTION: ${PUBLIC_DESCRIPTION}
|
PUBLIC_DESCRIPTION: This is my Gallery Site
|
||||||
PUBLIC_USEICONS: ${PUBLIC_USEICONS}
|
PUBLIC_USEICONS: true
|
||||||
env_file: .env
|
|
||||||
labels:
|
|
||||||
caddy: lion.gay
|
|
||||||
caddy.reverse_proxy: "{{upstreams 4321}}"
|
|
||||||
pocketbase:
|
|
||||||
image: ghcr.io/muchobien/pocketbase:latest
|
|
||||||
container_name: pocketbase
|
|
||||||
restart: unless-stopped
|
|
||||||
labels:
|
|
||||||
caddy: pocket.fangs.app
|
|
||||||
caddy.reverse_proxy: "{{upstreams 8090}}"
|
|
||||||
caddy:
|
|
||||||
container_name: "caddy"
|
|
||||||
image: videah/caddy-proxy:latest
|
|
||||||
ports:
|
ports:
|
||||||
- "80:80"
|
- 4321:4321
|
||||||
- "443:443"
|
env_file:
|
||||||
- "443:443/udp"
|
- .env
|
||||||
environment:
|
# - PUBLIC_POCKETBASE_URL=https://pb.data.lio.systems
|
||||||
- CADDY_INGRESS_NETWORKS=caddy
|
# - PUBLIC_TITLE=Astro Gallery
|
||||||
networks:
|
# - PUBLIC_DESCRIPTION=This is my Gallery Site
|
||||||
- caddy
|
# - PUBLIC_USEICONS=true
|
||||||
volumes:
|
# build:
|
||||||
- /var/run/docker.sock:/var/run/docker.sock
|
# context: .
|
||||||
- caddy_data:/data
|
# dockerfile: Dockerfile
|
||||||
restart: unless-stopped
|
# args:
|
||||||
labels:
|
# PUBLIC_HOST: http://localhost:4321
|
||||||
caddy.email: "caddy@lion.gay"
|
|
||||||
caddy.encode: zstd gzip
|
|
||||||
|
|
||||||
networks:
|
|
||||||
caddy:
|
|
||||||
external: true
|
|
||||||
|
|
||||||
volumes:
|
|
||||||
caddy_data: {}
|
|
|
@ -9,7 +9,7 @@ if (image) {
|
||||||
}
|
}
|
||||||
---
|
---
|
||||||
|
|
||||||
<div class="relative max-w-xl mx-auto mt-20 h-32 w-55">
|
<div class="relative max-w-xl mx-auto mt-20 h-32 w-64">
|
||||||
<a href={href} class="block">
|
<a href={href} class="block">
|
||||||
{
|
{
|
||||||
image && (
|
image && (
|
||||||
|
|
|
@ -15,7 +15,7 @@ export const prerender = false;
|
||||||
<div class="flex flex-col">
|
<div class="flex flex-col">
|
||||||
<h1 class="text-3xl text-center pt-8">Characters</h1>
|
<h1 class="text-3xl text-center pt-8">Characters</h1>
|
||||||
<div
|
<div
|
||||||
class="grid grid-cols-2 xl:grid-cols-4 gap-4 columns-2 md:columns-4 self-center p-4"
|
class="grid grid-cols-2 xl:grid-cols-4 gap-4 columns-2 md:columns-4 self-center"
|
||||||
>
|
>
|
||||||
{
|
{
|
||||||
[...characters].map((c) => (
|
[...characters].map((c) => (
|
||||||
|
|
Loading…
Add table
Reference in a new issue