Removed jellyfin, pihole and vaultwarden for thinkcentre
This commit is contained in:
parent
0c73fde2c8
commit
4084f51478
|
@ -1,26 +0,0 @@
|
|||
version: '3.5'
|
||||
|
||||
services:
|
||||
jellyfin:
|
||||
image: jellyfin/jellyfin
|
||||
container_name: jellyfin
|
||||
#user: 1000:1000
|
||||
network_mode: 'host'
|
||||
volumes:
|
||||
- /mnt/data/storage/jellyfin/config:/config
|
||||
- /mnt/data/storage/jellyfin/cache:/cache
|
||||
- /mnt/data/media:/media
|
||||
|
||||
#ports:
|
||||
# - "8096:8096/tcp"
|
||||
# - "8920:8920/tcp"
|
||||
# - "1900:1900/udp"
|
||||
# - "7359:7359/udp"
|
||||
restart: 'unless-stopped'
|
||||
# Optional - alternative address used for autodiscovery
|
||||
#environment:
|
||||
# - JELLYFIN_PublishedServerUrl=http://example.com
|
||||
# Optional - may be necessary for docker healthcheck to pass if running in host network mode
|
||||
extra_hosts:
|
||||
- "host.docker.internal:host-gateway"
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
version: '3.3'
|
||||
|
||||
services:
|
||||
minecraft-server:
|
||||
volumes:
|
||||
- ./data:/data
|
||||
environment:
|
||||
- TYPE=FORGE
|
||||
- MEMORY=4G
|
||||
- VERSION=1.18.2
|
||||
- FORGE_VERSION=40.1.93
|
||||
- EULA=TRUE
|
||||
- MOTD=Hej och välkommen!
|
||||
ports:
|
||||
- '25565:25565'
|
||||
container_name: minecraft
|
||||
image: itzg/minecraft-server
|
||||
|
|
@ -1,34 +0,0 @@
|
|||
version: "3.8"
|
||||
|
||||
# More info at https://github.com/pi-hole/docker-pi-hole/ and https://docs.pi-hole.net/
|
||||
services:
|
||||
pihole:
|
||||
container_name: pihole
|
||||
image: pihole/pihole:latest
|
||||
# For DHCP it is recommended to remove these ports and instead add: network_mode: "host"
|
||||
network_mode: host
|
||||
#ports:
|
||||
#- "53:53/tcp"
|
||||
#- "53:53/udp"
|
||||
#- "67:67/udp" # Only required if you are using Pi-hole as your DHCP server
|
||||
#- "8081:80/tcp"
|
||||
environment:
|
||||
WEB_PORT: 8081
|
||||
TZ: 'Europe/Stockholm'
|
||||
# WEBPASSWORD: 'set a secure password here or it will be random'
|
||||
# Volumes store your data between container upgrades
|
||||
volumes:
|
||||
- '/mnt/data/storage/pihole/etc-pihole:/etc/pihole'
|
||||
- '/mnt/data/storage/pihole/etc-dnsmasq.d:/etc/dnsmasq.d'
|
||||
# https://github.com/pi-hole/docker-pi-hole#note-on-capabilities
|
||||
cap_add:
|
||||
- NET_ADMIN # Required if you are using Pi-hole as your DHCP server, else not needed
|
||||
restart: unless-stopped
|
||||
# networks:
|
||||
# - proxy
|
||||
|
||||
#networks:
|
||||
# default:
|
||||
# external: true
|
||||
# proxy:
|
||||
# external: true
|
|
@ -1,14 +0,0 @@
|
|||
version: '3.3'
|
||||
services:
|
||||
server:
|
||||
container_name: vaultwarden
|
||||
volumes:
|
||||
- /mnt/data/storage/vaultwarden:/data
|
||||
ports:
|
||||
- '5080:80'
|
||||
image: 'vaultwarden/server:latest'
|
||||
networks:
|
||||
- proxy
|
||||
networks:
|
||||
proxy:
|
||||
external: true
|
Loading…
Reference in New Issue