From 4cd8f4aac4952b96cda585465565aea49e7c0e56 Mon Sep 17 00:00:00 2001 From: Alex Tavarez Date: Thu, 11 Jun 2026 15:44:15 -0400 Subject: [PATCH] excluded some standard cruft from version control --- .gitignore | 12 +++++++++-- compose.yml | 60 ----------------------------------------------------- 2 files changed, 10 insertions(+), 62 deletions(-) delete mode 100644 compose.yml diff --git a/.gitignore b/.gitignore index 78b3df5..db36ba2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,10 @@ -.env -*.env +*.bak +**/Dockerfile.* +docker-compose.override.yml +docker-compose.*.env +tmp/ +build/ +.cache/ +dist/ +*.log +*.pid \ No newline at end of file diff --git a/compose.yml b/compose.yml deleted file mode 100644 index f6ade8d..0000000 --- a/compose.yml +++ /dev/null @@ -1,60 +0,0 @@ ---- -networks: - frontend: - driver: bridge - backend: - driver: bridge -# volumes: -# grocy.vol: -# secrets: -# generic: -# file: ./secrets.env -services: - gitea: - image: docker.gitea.com/gitea:1.25.2 - container_name: gitea - restart: always - networks: - - frontend - volumes: - - ~/.storage/containers/gitea.vol:/data - - /etc/localtime:/etc/localtime:ro - ports: - - 3000:3000 - - "2222:22" - opengist: - image: ghcr.io/thomiceli/opengist:1 - container_name: opengist - restart: unless-stopped - ports: - - 6157:6157 - - 2223:2222 - volumes: - - ~/.storage/containers/opengist.vol:/opengist - # - ~/.config/opengist/config.yml:/config.yml - - /etc/localtime:/etc/localtime:ro - environment: - OG_GITEA_CLIENT_KEY: ${OG_GITEA_CLIENT_KEY:?Provide gitea client key} - OG_GITEA_SECRET: ${OG_GITEA_SECRET:?Provide gitea secret} - OG_GITEA_URL: ${OG_GITEA_URL:?Provide gitea FQDN URL} - # secrets: - # - generic - networks: - - frontend - # @TODO the below services are in the future meant to be in a LAN homeserver or tailscale/headscale exit node - grocy: - image: lscr.io/linuxserver/grocy:latest - container_name: grocy - environment: - - PUID=$(id -u $USER) - - PGID=$(id -u $USER) - - TZ=Etc/UTC - volumes: - # - grocy.vol:/data - - ~/.config/grocy:/config - - /etc/localtime:/etc/localtime:ro - ports: - - 9283:9283 - restart: unless-stopped - networks: - - frontend