Compare commits

...

2 Commits

Author SHA1 Message Date
c0ba9db693 . 2022-04-03 22:06:08 +02:00
dfc8a6abfe . 2022-04-03 22:02:58 +02:00
6 changed files with 35 additions and 2 deletions

View File

@ -0,0 +1 @@
{"origin":"custom","network_model":"bridge","index":"/","icon":"https://cdn.jsdelivr.net/gh/IceWhaleTech/AppIcon@main/all/guacamole.png","image":"oznu/guacamole:armhf","envs":[],"ports":[{"container":"8080","host":"9080","protocol":"tcp","desc":"","type":0}],"volumes":[{"container":"/config","host":"/DATA/USB_Storage_sda1/guacamole","type":0,"desc":""}],"devices":[],"port_map":"9080","cpu_shares":10,"restart":"always","enable_upnp":false,"label":"Guacamole","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/wallabag.png","image":"ugeek/wallabag:arm","envs":[{"container":"SYMFONY__ENV__DOMAIN_NAME","host":"http://192.168.100.54:2080","desc":"","type":0}],"ports":[{"container":"80","host":"2080","protocol":"tcp","desc":"","type":0}],"volumes":[{"container":"/var/www/wallabag/data","host":"/DATA/USB_Storage_sda1/wallabag/data","type":0,"desc":""},{"container":"/var/www/wallabag/web/assets/images","host":"/DATA/USB_Storage_sda1/wallabag","type":0,"desc":""}],"devices":[],"port_map":"2080","cpu_shares":10,"restart":"always","enable_upnp":false,"label":"Wallabag","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/webtop.png","image":"ghcr.io/linuxserver/webtop:ubuntu-mate","envs":[{"container":"PUID","host":"1000","desc":"","type":0},{"container":"GUID","host":"1000","desc":"","type":0},{"container":"TZ","host":"Europe/Warsaw","desc":"","type":0}],"ports":[{"container":"3000","host":"3000","protocol":"tcp","desc":"","type":0}],"volumes":[{"container":"/var/run/docker.sock","host":"/var/run/docker.sock","type":0,"desc":""},{"container":"/config","host":"/DATA/USB_Storage_sda1/webtop","type":0,"desc":""}],"devices":[],"port_map":"3000","cpu_shares":10,"restart":"always","enable_upnp":false,"label":"webtop","description":"","position":true,"host_name":"","privileged":false,"cap_add":[],"cmd":[],"version":"1.0"}

View File

@ -10,9 +10,9 @@ services:
- TZ=Europe/Warsaw - TZ=Europe/Warsaw
- SUBFOLDER=/ #optional - SUBFOLDER=/ #optional
volumes: volumes:
- /home/docker:/config - /docker/webtop:/config
- /var/run/docker.sock:/var/run/docker.sock #optional - /var/run/docker.sock:/var/run/docker.sock #optional
ports: ports:
- 3000:3000 - 3000:3000
shm_size: "1gb" #optional shm_size: "1gb" #optional
restart: unless-stopped restart: always

View File

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

View File

@ -0,0 +1,15 @@
version: "2.1"
services:
firefox:
image: lscr.io/linuxserver/firefox
container_name: firefox
environment:
- PUID=1024
- PGID=100
- TZ=Europe/Warsaw
volumes:
- /volume1/docker/firefox:/config
ports:
- 3333:3000
shm_size: "1gb"
restart: always