From 4829c8ae00cdd267eca38fa536efb1b7f512e35d Mon Sep 17 00:00:00 2001 From: Buster Neece Date: Sun, 30 Apr 2023 02:30:49 -0500 Subject: [PATCH] Minor cleanup of base dir. --- .dockerignore | 1 - yacht.json | 82 --------------------------------------------------- 2 files changed, 83 deletions(-) delete mode 100644 yacht.json diff --git a/.dockerignore b/.dockerignore index b58d42bdd..8d73d0a05 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,5 +1,4 @@ .git -.devcontainer .github .run frontend/node_modules diff --git a/yacht.json b/yacht.json deleted file mode 100644 index e4024b5e3..000000000 --- a/yacht.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "type": 1, - "title": "AzuraCast", - "name": "azuracast", - "description": "AzuraCast Web Radio Suite Docker installation.", - "logo": "https://www.azuracast.com/img/logo.png", - "image": "ghcr.io/azuracast/azuracast:latest", - "note": "AzuraCast is the free and open-source software suite that makes web radio easy. This is the standard Docker installation for AzuraCast, including all necessary components.", - "categories": [ - "streaming" - ], - "platform": "linux", - "restart_policy": "unless-stopped", - "administrator_only": false, - "ports": [ - { - "HTTP": "80:80/tcp", - "HTTPS": "443:443/tcp", - "SFTP": "2022:2022/tcp" - } - ], - "network_mode": "bridge", - "volumes": [ - { - "container": "/var/azuracast/uploads", - "bind": "www_uploads" - }, - { - "container": "/var/azuracast/stations", - "bind": "station_data" - }, - { - "container": "/var/azuracast/servers/shoutcast2", - "bind": "shoutcast2_install" - }, - { - "container": "/var/azuracast/servers/stereo_tool", - "bind": "stereo_tool_install" - }, - { - "container": "/var/azuracast/geoip", - "bind": "geolite_install" - }, - { - "container": "/var/azuracast/sftpgo/persist", - "bind": "sftpgo_data" - }, - { - "container": "/var/azuracast/backups", - "bind": "backups" - }, - { - "container": "/var/azuracast/acme", - "bind": "acme" - }, - { - "container": "/var/lib/mysql", - "bind": "db_data" - } - ], - "privileged": true, - "env": [ - { - "name": "PUID", - "label": "Container UID (PUID)", - "description": "The user ID (UID) of the user inside the Docker container.", - "default": "1000" - }, - { - "name": "PGID", - "label": "Container GID (PGID)", - "description": "The group ID GID of the user inside the Docker container.", - "default": "1000" - }, - { - "name": "APPLICATION_ENV", - "label": "Application Environment", - "description": "Valid options: production, development, testing", - "default": "production" - } - ] -}