fix: typos and more docker file stuff

This commit is contained in:
Lio 2025-08-20 12:23:58 +02:00
parent a9b83d658d
commit c96dd186e2
2 changed files with 3 additions and 25 deletions

View file

@ -20,4 +20,4 @@ COPY --from=prod-deps /app/node_modules ./node_modules
COPY --from=build /app/dist ./dist COPY --from=build /app/dist ./dist
EXPOSE 4321 EXPOSE 4321
CMD ['node', './dist/server/entry.mjs'] CMD ["node", "./dist/server/entry.mjs"]

View file

@ -13,27 +13,5 @@ services:
ports: ports:
- "8090:8090" - "8090:8090"
volumes: volumes:
- /opt/pocketbase/pb_data:/pb_data - ./pocketbase/pb_data:/pb_data
- /opt/pocketbase/pb_public:/pb_public - ./pocketbase/pb_public:/pb_public
# caddy:
# container_name: "caddy-gallery"
# image: videah/caddy-proxy:latest
# ports:
# - "80:80"
# - "443:443"
# - "443:443/udp"
# environment:
# - CADDY_INGRESS_NETWORKS=caddy
# networks:
# - caddy
# volumes:
# - /var/run/docker.sock:/var/run/docker.sock
# - caddy_data:/data
# restart: unless-stopped
networks:
caddy:
external: true
volumes:
caddy_data: {}