Skip to content

Commit

Permalink
add snapdrop
Browse files Browse the repository at this point in the history
  • Loading branch information
chendelin1982 authored Mar 25, 2024
1 parent 4a746a1 commit 3f1dde8
Show file tree
Hide file tree
Showing 6 changed files with 67 additions and 0 deletions.
18 changes: 18 additions & 0 deletions apps/snapdrop/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
W9_REPO=linuxserver/snapdrop
W9_DIST=community
W9_VERSION=latest

W9_HTTP_PORT_SET=9001

#### -- Not allowed to edit below environments when recreate app based on existing data -- ####

W9_ID=snapdrop
W9_HTTP_PORT=80

W9_URL=internet_ip
W9_NETWORK=websoft9

#### ----------------------------------------------------------------------------------------- ####


# Below environment is created by snapdrop
5 changes: 5 additions & 0 deletions apps/snapdrop/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# CHANGELOG

## Release
### Fixes and Enhancements

1 change: 1 addition & 0 deletions apps/snapdrop/Notes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Snapdrop
22 changes: 22 additions & 0 deletions apps/snapdrop/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# image,docs: https://github.com/RobinLinus/snapdrop/blob/master/docs/local-dev.md

version: '3.8'

services:
snapdrop:
image: $W9_REPO:$W9_VERSION
container_name: $W9_ID
restart: unless-stopped
ports:
- $W9_HTTP_PORT_SET:80
env_file: .env
volumes:
- snapdrop:/config

volumes:
snapdrop:

networks:
default:
name: $W9_NETWORK
external: true
3 changes: 3 additions & 0 deletions apps/snapdrop/src/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# About

This folder includes files mount to container and used by Websoft9
18 changes: 18 additions & 0 deletions apps/snapdrop/variables.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"name": "snapdrop",
"trademark": "Snapdrop",
"release": false,
"fork_url": "https://github.com/RobinLinus/snapdrop",
"edition": [
{
"dist": "community",
"version": ["latest"]
}
],
"requirements": {
"cpu": "1",
"memory": "1",
"disk": "1",
"url": "https://github.com/RobinLinus/snapdrop"
}
}

0 comments on commit 3f1dde8

Please sign in to comment.