diff --git a/proxmox/ubuntu/docker/portainer/README.md b/docker/immich/README.md similarity index 100% rename from proxmox/ubuntu/docker/portainer/README.md rename to docker/immich/README.md diff --git a/docker/immich/docker-compose.yml b/docker/immich/docker-compose.yml new file mode 100644 index 0000000..0362d5b --- /dev/null +++ b/docker/immich/docker-compose.yml @@ -0,0 +1,68 @@ +name: immich + +services: + immich-server: + container_name: immich_server + image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release} + command: ['start.sh', 'immich'] + volumes: + - ${UPLOAD_LOCATION}:/usr/src/app/upload + - /etc/localtime:/etc/localtime:ro + env_file: + - .env + ports: + - 2283:3001 + depends_on: + - redis + - database + restart: always + + immich-microservices: + container_name: immich_microservices + image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release} + # extends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/hardware-transcoding + # file: hwaccel.transcoding.yml + # service: cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding + command: ['start.sh', 'microservices'] + volumes: + - ${UPLOAD_LOCATION}:/usr/src/app/upload + - /etc/localtime:/etc/localtime:ro + env_file: + - .env + depends_on: + - redis + - database + restart: always + + immich-machine-learning: + container_name: immich_machine_learning + # For hardware acceleration, add one of -[armnn, cuda, openvino] to the image tag. + # Example tag: ${IMMICH_VERSION:-release}-cuda + image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release} + # extends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/ml-hardware-acceleration + # file: hwaccel.ml.yml + # service: cpu # set to one of [armnn, cuda, openvino, openvino-wsl] for accelerated inference - use the `-wsl` version for WSL2 where applicable + volumes: + - model-cache:/cache + env_file: + - .env + restart: always + + redis: + container_name: immich_redis + image: registry.hub.docker.com/library/redis:6.2-alpine@sha256:84882e87b54734154586e5f8abd4dce69fe7311315e2fc6d67c29614c8de2672 + restart: always + + database: + container_name: immich_postgres + image: registry.hub.docker.com/tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0 + environment: + POSTGRES_PASSWORD: ${DB_PASSWORD} + POSTGRES_USER: ${DB_USERNAME} + POSTGRES_DB: ${DB_DATABASE_NAME} + volumes: + - ${DB_DATA_LOCATION}:/var/lib/postgresql/data + restart: always + +volumes: + model-cache: \ No newline at end of file diff --git a/docker/portainer/README.md b/docker/portainer/README.md new file mode 100644 index 0000000..e69de29 diff --git a/proxmox/ubuntu/docker/portainer/docker-compose.yml b/docker/portainer/docker-compose.yml similarity index 100% rename from proxmox/ubuntu/docker/portainer/docker-compose.yml rename to docker/portainer/docker-compose.yml diff --git a/docker/traefik/README.md b/docker/traefik/README.md new file mode 100644 index 0000000..e69de29 diff --git a/docker/traefik/docker-compose.yml b/docker/traefik/docker-compose.yml new file mode 100644 index 0000000..4b24a5e --- /dev/null +++ b/docker/traefik/docker-compose.yml @@ -0,0 +1,16 @@ +version: '3' + +services: + reverse-proxy: + # The official v3 Traefik docker image + image: traefik:v3.0 + # Enables the web UI and tells Traefik to listen to docker + command: --api.insecure=true --providers.docker + ports: + # The HTTP port + - "80:80" + # The Web UI (enabled by --api.insecure=true) + - "8080:8080" + volumes: + # So that Traefik can listen to the Docker events + - /var/run/docker.sock:/var/run/docker.sock \ No newline at end of file diff --git a/lxc/README.md b/lxc/README.md new file mode 100644 index 0000000..e69de29 diff --git a/lxc/gitea/README.md b/lxc/gitea/README.md new file mode 100644 index 0000000..b8960c5 --- /dev/null +++ b/lxc/gitea/README.md @@ -0,0 +1,5 @@ +# Self-hosted Gitea + +I self-host Gitea for personal and private projects. I have a couple of orgs on there where I can share projects, however most of the stuff I do there is just for me if and until I want to share those on GitHub. + +You can find my config over at [app.ini](app.ini). \ No newline at end of file diff --git a/lxc/gitea/app.ini b/lxc/gitea/app.ini new file mode 100644 index 0000000..e69de29