diff --git a/compose-files/gitea.yml b/compose-files/gitea.yml deleted file mode 100644 index d21ce52..0000000 --- a/compose-files/gitea.yml +++ /dev/null @@ -1,30 +0,0 @@ -version: "3" - -volumes: - gitea-data: - driver: local - gitea-ssh: - driver: local - -services: - server: - container_name: gitea - image: gitea/gitea:1 - restart: always - volumes: - #- gitea-data:/var/lib/gitea:Z - #- gitea-config:/etc/gitea:Z - - gitea-data:/data:Z - - gitea-ssh:/data/git/.ssh:Z - - /etc/timezone:/etc/timezone:ro - - /etc/localtime:/etc/localtime:ro - environment: - - USER_UID=1000 - - USER_GID=1000 - - DISABLE_SSH=false - - START_SSH_SERVER=true - - SSH_PORT=2222 - - SSH_LISTEN_PORT=2222 - ports: - - "3000:3000" - - "2222:2222" diff --git a/compose-files/jbmasto.yml b/compose-files/jbmasto.yml deleted file mode 100644 index 4940a29..0000000 --- a/compose-files/jbmasto.yml +++ /dev/null @@ -1,6 +0,0 @@ -version: 3.8 -services: - tooter: - container_name: jbmasto - build: /home/oct2pus/server-config/docker-files/jbmasto - volume: diff --git a/compose-files/megacmd.yml b/compose-files/megacmd.yml deleted file mode 100644 index b1d080d..0000000 --- a/compose-files/megacmd.yml +++ /dev/null @@ -1,3 +0,0 @@ -services: - mega: - image: diff --git a/compose-files/podgrab.yml b/compose-files/podgrab.yml deleted file mode 100644 index 95762ed..0000000 --- a/compose-files/podgrab.yml +++ /dev/null @@ -1,21 +0,0 @@ -version: "2.1" - -volumes: - podgrab-config: - driver: local - podgrab-data: - driver: local - -services: - podgrab: - image: akhilrex/podgrab - container_name: podgrab - environment: - - CHECK_FREQUENCY=240 - # - PASSWORD=password ## Uncomment to enable basic authentication, username = podgrab - volumes: - - podgrab-config:/config - - podgrab-data:/assets - ports: - - 8080:8080 - restart: unless-stopped diff --git a/compose-files/sharry.yml b/compose-files/sharry.yml deleted file mode 100644 index 21a3f5b..0000000 --- a/compose-files/sharry.yml +++ /dev/null @@ -1,14 +0,0 @@ -version: '3.7' -volumes: - sharry-data: - driver: local - -services: - restserver: - image: eikek0/sharry:latest - container_name: sharry - command: /data/sharry.conf - ports: - - "9090:9090" - volumes: - - sharry-data:/data/ diff --git a/post.fish b/post.fish deleted file mode 100755 index 279c72e..0000000 --- a/post.fish +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/fish - -for i in (ls compose-files) - cp compose-files/$i ~/.config/compose/ -end - -for i in (ls service-files) - cp service-files/$i ~/.config/systemd/user/ -end