From 76375fd005ece8f3ee17a1ffec6c9f06a216db80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaros=C5=82aw=20Karcewicz?= Date: Sun, 3 Apr 2022 23:22:56 +0200 Subject: [PATCH] . --- casaos/libreoffice/Libreoffice.json | 1 + casaos/wireshark/Wireshark.json | 1 + docker-compose/libreoffice/libreoffice_rpi.yml | 14 ++++++++++++++ docker-compose/wireshark/wireshark_rpi.yml | 16 ++++++++++++++++ 4 files changed, 32 insertions(+) create mode 100644 casaos/libreoffice/Libreoffice.json create mode 100644 casaos/wireshark/Wireshark.json create mode 100644 docker-compose/libreoffice/libreoffice_rpi.yml create mode 100644 docker-compose/wireshark/wireshark_rpi.yml diff --git a/casaos/libreoffice/Libreoffice.json b/casaos/libreoffice/Libreoffice.json new file mode 100644 index 0000000..be58c09 --- /dev/null +++ b/casaos/libreoffice/Libreoffice.json @@ -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"} \ No newline at end of file diff --git a/casaos/wireshark/Wireshark.json b/casaos/wireshark/Wireshark.json new file mode 100644 index 0000000..56327ec --- /dev/null +++ b/casaos/wireshark/Wireshark.json @@ -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"} \ No newline at end of file diff --git a/docker-compose/libreoffice/libreoffice_rpi.yml b/docker-compose/libreoffice/libreoffice_rpi.yml new file mode 100644 index 0000000..a8b07aa --- /dev/null +++ b/docker-compose/libreoffice/libreoffice_rpi.yml @@ -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 \ No newline at end of file diff --git a/docker-compose/wireshark/wireshark_rpi.yml b/docker-compose/wireshark/wireshark_rpi.yml new file mode 100644 index 0000000..7d106ba --- /dev/null +++ b/docker-compose/wireshark/wireshark_rpi.yml @@ -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 \ No newline at end of file