Add samba back
This commit is contained in:
parent
f9c3b1dd40
commit
a4389b07b5
|
@ -0,0 +1,2 @@
|
||||||
|
password
|
||||||
|
samba-users.env
|
|
@ -53,7 +53,7 @@ services:
|
||||||
traefik.http.routers.simpleauth.rule: "PathPrefix(`/`)"
|
traefik.http.routers.simpleauth.rule: "PathPrefix(`/`)"
|
||||||
traefik.http.services.simpleauth.loadbalancer.server.port: "8080"
|
traefik.http.services.simpleauth.loadbalancer.server.port: "8080"
|
||||||
plex:
|
plex:
|
||||||
image: ghcr.io/linuxserver/plex:1.25.3
|
image: ghcr.io/linuxserver/plex:1.25.4
|
||||||
networks:
|
networks:
|
||||||
- hostnet
|
- hostnet
|
||||||
environment:
|
environment:
|
||||||
|
@ -96,7 +96,7 @@ services:
|
||||||
source: /srv/ext/sys/nextcloud
|
source: /srv/ext/sys/nextcloud
|
||||||
target: /config
|
target: /config
|
||||||
- type: bind
|
- type: bind
|
||||||
source: /srv/ext/storage
|
source: /srv/ext/nextcloud
|
||||||
target: /data
|
target: /data
|
||||||
- type: bind
|
- type: bind
|
||||||
source: /srv/ext
|
source: /srv/ext
|
||||||
|
@ -140,6 +140,30 @@ services:
|
||||||
networks:
|
networks:
|
||||||
- hostnet
|
- hostnet
|
||||||
|
|
||||||
|
samba:
|
||||||
|
image: dperson/samba
|
||||||
|
volumes:
|
||||||
|
- type: bind
|
||||||
|
source: /srv/ext
|
||||||
|
target: /srv/ext
|
||||||
|
environment:
|
||||||
|
NMBD: enable
|
||||||
|
RECYCLE: disable
|
||||||
|
# name;path;browse;readonly;guest
|
||||||
|
SHARE1: storage;/srv/ext/storage;yes;no;no
|
||||||
|
SHARE2: media;/srv/ext/media;yes;no;no
|
||||||
|
SHARE3: software;/srv/ext/software;yes;no;no
|
||||||
|
SHARE4: backups;/srv/ext/backups;yes;no;no
|
||||||
|
env_file:
|
||||||
|
- samba-users.env
|
||||||
|
ports:
|
||||||
|
- published: 139
|
||||||
|
target: 139
|
||||||
|
- published: 445
|
||||||
|
target: 445
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
secrets:
|
secrets:
|
||||||
password:
|
password:
|
||||||
file: password
|
file: password
|
||||||
|
|
Loading…
Reference in New Issue