Fix wrong parameter in new pr
This commit is contained in:
parent
62f6413192
commit
11b186f425
|
@ -39,7 +39,7 @@ x-casaos:
|
||||||
architectures:
|
architectures:
|
||||||
- amd64
|
- amd64
|
||||||
- arm64
|
- arm64
|
||||||
main: app
|
main: filedrop
|
||||||
description:
|
description:
|
||||||
en_us: |
|
en_us: |
|
||||||
FileDrop is a self-hosted file sharing service that allows you to easily share files with family, friends, or colleagues. It's been designed to be easy to use and light on resources.
|
FileDrop is a self-hosted file sharing service that allows you to easily share files with family, friends, or colleagues. It's been designed to be easy to use and light on resources.
|
||||||
|
|
|
@ -13,7 +13,7 @@ services:
|
||||||
restart: always
|
restart: always
|
||||||
ports:
|
ports:
|
||||||
- target: 4533
|
- target: 4533
|
||||||
published: 4533
|
published: "4533"
|
||||||
protocol: tcp
|
protocol: tcp
|
||||||
volumes:
|
volumes:
|
||||||
- type: bind
|
- type: bind
|
||||||
|
|
|
@ -3,6 +3,9 @@ services:
|
||||||
threadfin:
|
threadfin:
|
||||||
image: fyb3roptik/threadfin:latest
|
image: fyb3roptik/threadfin:latest
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
environment:
|
||||||
|
- THREADFIN_BRANCH=main
|
||||||
|
- THREADFIN_DEBUG=0
|
||||||
x-casaos:
|
x-casaos:
|
||||||
volumes:
|
volumes:
|
||||||
- container: /home/threadfin/conf/data
|
- container: /home/threadfin/conf/data
|
||||||
|
@ -22,9 +25,6 @@ services:
|
||||||
- container: "34400"
|
- container: "34400"
|
||||||
description:
|
description:
|
||||||
en_us: Port to access the application's GUI via the web interface.
|
en_us: Port to access the application's GUI via the web interface.
|
||||||
environment:
|
|
||||||
- THREADFIN_BRANCH=$THREADFIN_BRANCH
|
|
||||||
- THREADFIN_DEBUG=$THREADFIN_DEBUG
|
|
||||||
ports:
|
ports:
|
||||||
- target: 34400
|
- target: 34400
|
||||||
published: "34400"
|
published: "34400"
|
||||||
|
|
Loading…
Reference in New Issue