This commit is contained in:
Jarosław Karcewicz 2022-04-03 23:22:56 +02:00
parent b2b028b4fd
commit 76375fd005
4 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1 @@
{"origin":"custom","network_model":"bridge","index":"/","icon":"https://cdn.jsdelivr.net/gh/IceWhaleTech/AppIcon@main/all/libreoffice.png","image":"lscr.io/linuxserver/libreoffice:latest","envs":[{"container":"PUID","host":"1000","desc":"","type":0},{"container":"PGID","host":"1000","desc":"","type":0},{"container":"TZ","host":"Europe/Warsaw","desc":"","type":0}],"ports":[{"container":"3000","host":"3111","protocol":"tcp","desc":"","type":0}],"volumes":[{"container":"/config","host":"/DATA/USB_Storage_sda1/libreoffice","type":0,"desc":""}],"devices":[],"port_map":"3111","cpu_shares":10,"restart":"always","enable_upnp":false,"label":"Libreoffice","description":"","position":true,"host_name":"","privileged":false,"cap_add":[],"cmd":[],"version":"1.0"}

View File

@ -0,0 +1 @@
{"origin":"custom","network_model":"bridge","index":"/","icon":"https://cdn.jsdelivr.net/gh/IceWhaleTech/AppIcon@main/all/wireshark.png","image":"lscr.io/linuxserver/wireshark:latest","envs":[{"container":"PUID","host":"1000","desc":"","type":0},{"container":"PGID","host":"1000","desc":"","type":0},{"container":"TZ","host":"Europe/Warsaw","desc":"","type":0}],"ports":[{"container":"3000","host":"3222","protocol":"tcp","desc":"","type":0}],"volumes":[{"container":"/config","host":"/DATA/USB_Storage_sda1/wireshark","type":0,"desc":""}],"devices":[],"port_map":"3222","cpu_shares":10,"restart":"always","enable_upnp":false,"label":"Wireshark","description":"","position":true,"host_name":"","privileged":false,"cap_add":["NET_ADMIN"],"cmd":[],"version":"1.0"}

View File

@ -0,0 +1,14 @@
version: "2.1"
services:
libreoffice:
image: lscr.io/linuxserver/libreoffice
container_name: libreoffice
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Warsaw
volumes:
- /docker/libreoffice:/config
ports:
- 3111:3000
restart: always

View File

@ -0,0 +1,16 @@
version: "2.1"
services:
wireshark:
image: lscr.io/linuxserver/wireshark
container_name: wireshark
cap_add:
- NET_ADMIN
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Warsaw
volumes:
- /docker/wireshark:/config
ports:
- 3222:3000
restart: always