Updated yaml to use .env files
This commit is contained in:
14
ddns-cloudflare.yaml
Normal file
14
ddns-cloudflare.yaml
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
version: '2'
|
||||||
|
services:
|
||||||
|
cloudflare-ddns:
|
||||||
|
container_name: ddns-cloudflare
|
||||||
|
image: oznu/cloudflare-ddns:latest
|
||||||
|
restart: always
|
||||||
|
env_file:
|
||||||
|
- stack.env
|
||||||
|
environment:
|
||||||
|
- API_KEY=${CLOUDFLARE_API}
|
||||||
|
- ZONE=${ZONE}
|
||||||
|
- PROXIED=true
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
15
heimdall.yaml
Normal file
15
heimdall.yaml
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
version: "2.1"
|
||||||
|
services:
|
||||||
|
heimdall:
|
||||||
|
image: lscr.io/linuxserver/heimdall:latest
|
||||||
|
container_name: heimdall
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=Europe/Warsaw
|
||||||
|
volumes:
|
||||||
|
- /home/mbuz/docker/heimdall/config:/config
|
||||||
|
ports:
|
||||||
|
- 80:80
|
||||||
|
- 443:443
|
||||||
|
restart: unless-stopped
|
||||||
48
nextcloud.yaml
Normal file
48
nextcloud.yaml
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
version: '3.3'
|
||||||
|
services:
|
||||||
|
nextcloud:
|
||||||
|
image: lscr.io/linuxserver/nextcloud:latest
|
||||||
|
container_name: nextcloud
|
||||||
|
env_file:
|
||||||
|
- stack.env
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- PHP_MEMORY_LIMIT=${PHP_MEMORY_LIMIT}
|
||||||
|
- PHP_UPLOAD_LIMIT=${PHP_UPLOAD_LIMIT}
|
||||||
|
- TZ=${TZ}
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
- ${CONFIG}:/config
|
||||||
|
- ${DATA}:/data
|
||||||
|
ports:
|
||||||
|
- 5443:443
|
||||||
|
restart: unless-stopped
|
||||||
|
links:
|
||||||
|
- nextcloud-mariadb
|
||||||
|
depends_on:
|
||||||
|
- nextcloud-mariadb
|
||||||
|
|
||||||
|
nextcloud-mariadb:
|
||||||
|
image: lscr.io/linuxserver/mariadb:latest
|
||||||
|
container_name: nextloud-mariadb
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=${TZ}
|
||||||
|
- MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD}
|
||||||
|
- MYSQL_DATABASE=nextcloud
|
||||||
|
- MYSQL_USER=nextcloud
|
||||||
|
- MYSQL_PASSWORD=${MYSQL_PASSWORD}
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
- ${MARIADB}:/config
|
||||||
|
ports:
|
||||||
|
- 5306:3306
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
|
|
||||||
|
networks:
|
||||||
|
default:
|
||||||
|
name: nextcloud
|
||||||
|
driver: bridge
|
||||||
14
nginx-proxy.yaml
Normal file
14
nginx-proxy.yaml
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
version: '3.8'
|
||||||
|
services:
|
||||||
|
app:
|
||||||
|
image: jc21/nginx-proxy-manager:latest
|
||||||
|
restart: unless-stopped
|
||||||
|
env_file:
|
||||||
|
- stack.env
|
||||||
|
ports:
|
||||||
|
- 1080:80
|
||||||
|
- 1081:81
|
||||||
|
- 10443:443
|
||||||
|
volumes:
|
||||||
|
- ${NGINX_DATA}:/data
|
||||||
|
- ${NGINX_LETSENCRYPT}:/etc/letsencrypt
|
||||||
14
portainer.yaml
Normal file
14
portainer.yaml
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
version: "3"
|
||||||
|
services:
|
||||||
|
portainer:
|
||||||
|
image: portainer/portainer-ce:latest
|
||||||
|
ports:
|
||||||
|
- 9443:9443
|
||||||
|
env_file:
|
||||||
|
- stack.env
|
||||||
|
volumes:
|
||||||
|
- ${PORTAINER_DATA}:/data
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
|
restart: unless-stopped
|
||||||
|
volumes:
|
||||||
|
data:
|
||||||
21
webtop.yaml
Normal file
21
webtop.yaml
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
version: "2.1"
|
||||||
|
services:
|
||||||
|
webtop:
|
||||||
|
image: lscr.io/linuxserver/webtop:debian-mate
|
||||||
|
container_name: webtop
|
||||||
|
env_file:
|
||||||
|
- stack.env
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=Europe/Warsaw
|
||||||
|
# - CUSTOM_USER=user
|
||||||
|
# - PASSWORD=password
|
||||||
|
volumes:
|
||||||
|
- /home/mbuz/docker/webtop:/config
|
||||||
|
ports:
|
||||||
|
- 3000:3000
|
||||||
|
devices:
|
||||||
|
- /dev/dri:/dev/dri #optional
|
||||||
|
shm_size: "2gb" #optional
|
||||||
|
restart: unless-stopped
|
||||||
Reference in New Issue
Block a user