diff --git a/foundryvtt/foundry.compose b/foundryvtt/foundry.compose deleted file mode 100644 index 506d8c7..0000000 --- a/foundryvtt/foundry.compose +++ /dev/null @@ -1,32 +0,0 @@ -version: "3.7" - -services: - foundryvtt: - image: felddy/foundryvtt:release - hostname: foundry.krumel.moe - init: true - volumes: - - /srv/foundry:/data - ports: - - "30000:30000/tcp" - restart: "unless-stopped" - environment: - - FOUNDRY_HOSTNAME=foundry.krumel.moe - - FOUNDRY_LOCAL_HOSTNAME=septentrion:30000 - - FOUNDRY_PROXY_PORT=443 - - FOUNDRY_PROXY_SSL=true - networks: - - foundry - secrets: - - source: foundry_creds - target: config.json - -networks: - foundry: - ipam: - config: - - subnet: 172.20.60.0/24 - -secrets: - foundry_creds: - file: /srv/docker-secrets/foundry.json diff --git a/gitea/gitea.compose b/gitea/gitea.compose deleted file mode 100644 index b851150..0000000 --- a/gitea/gitea.compose +++ /dev/null @@ -1,26 +0,0 @@ -version: "3" - -services: - server: - image: gitea/gitea:1.13.7 - container_name: gitea - environment: - - USER_UID=2000 - - USER_GID=2000 - restart: always - networks: - - gitea - volumes: - - /srv/gitea:/data - - /etc/timezone:/etc/timezone:ro - - /etc/localtime:/etc/localtime:ro - - /home/git/.ssh/:/data/git/.ssh - ports: - - "3300:3000" - - "127.0.0.1:3322:22" - -networks: - gitea: - ipam: - config: - - subnet: 172.20.30.0/24 diff --git a/unifi-controller/unifi-controller.compose b/unifi-controller/unifi-controller.compose deleted file mode 100644 index d90b9bd..0000000 --- a/unifi-controller/unifi-controller.compose +++ /dev/null @@ -1,30 +0,0 @@ -version: "2.1" -services: - unifi-controller: - image: ghcr.io/linuxserver/unifi-controller - container_name: unifi-controller - environment: - - PUID=1000 - - PGID=1000 - - MEM_LIMIT=640M - volumes: - - /srv/unifi-controller/config:/config - ports: - - 3478:3478/udp - - 10001:10001/udp - - 8080:8080 - - 8443:8443 -# - 1900:1900/udp #optional -# - 8843:8843 #optional -# - 8880:8880 #optional -# - 6789:6789 #optional -# - 5514:5514/udp #optional - restart: unless-stopped - networks: - - unifi-controller - -networks: - unifi-controller: - ipam: - config: - - subnet: 172.20.20.0/24