42 lines
941 B
Markdown
42 lines
941 B
Markdown
# snapdrop
|
|
|
|
|
|
|
|
|
|
|
|
| Création | dockge |
|
|
| ----------- | ------------------------------------------------ |
|
|
| Mise-à-jour | Watchtower |
|
|
| Port | 7653 |
|
|
| Liens | [Github](https://github.com/RobinLinus/snapdrop) |
|
|
|
|
|
|
|
|
```yaml
|
|
version: "3.9"
|
|
services:
|
|
snapdrop:
|
|
image: ghcr.io/linuxserver/snapdrop:latest
|
|
container_name: Snapdrop
|
|
hostname: snapdrop
|
|
mem_limit: 1g
|
|
cpu_shares: 768
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
healthcheck:
|
|
test: wget --no-verbose --tries=1 --spider http://localhost:80
|
|
ports:
|
|
- 7653:443
|
|
labels:
|
|
- com.centurylinklabs.watchtower.enable=true
|
|
volumes:
|
|
- /volume1/docker/dockge/stacks/snapdrop:/config:rw
|
|
environment:
|
|
TZ: Europe/Paris
|
|
PUID: 1026
|
|
PGID: 100
|
|
restart: on-failure:5
|
|
j
|
|
```
|
|
|