Enable all services
This commit is contained in:
parent
75df1be7f7
commit
9067e9ae35
11 changed files with 2 additions and 20 deletions
|
@ -18,7 +18,6 @@ services:
|
||||||
- traefik.http.routers.baikal.entrypoints=https
|
- traefik.http.routers.baikal.entrypoints=https
|
||||||
- traefik.http.routers.baikal.tls=true
|
- traefik.http.routers.baikal.tls=true
|
||||||
- traefik.docker.network=baikal-frontend
|
- traefik.docker.network=baikal-frontend
|
||||||
profiles: ["disabled"]
|
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
baikal-frontend:
|
baikal-frontend:
|
||||||
|
|
|
@ -31,7 +31,6 @@ services:
|
||||||
- traefik.http.middlewares.delugeRedir.redirectregex.regex=^(.*)${PATH_DELUGE}$$
|
- traefik.http.middlewares.delugeRedir.redirectregex.regex=^(.*)${PATH_DELUGE}$$
|
||||||
- traefik.http.middlewares.delugeRedir.redirectregex.replacement=$${1}${PATH_DELUGE}/
|
- traefik.http.middlewares.delugeRedir.redirectregex.replacement=$${1}${PATH_DELUGE}/
|
||||||
- traefik.docker.network=deluge-frontend
|
- traefik.docker.network=deluge-frontend
|
||||||
profiles: ["disabled"]
|
|
||||||
|
|
||||||
torrent:
|
torrent:
|
||||||
container_name: torrent
|
container_name: torrent
|
||||||
|
@ -46,7 +45,6 @@ services:
|
||||||
# shortcut to bypass traefik limitation
|
# shortcut to bypass traefik limitation
|
||||||
ports:
|
ports:
|
||||||
- ${DOWNLOAD_HTTP_PORT}:80
|
- ${DOWNLOAD_HTTP_PORT}:80
|
||||||
profiles: ["disabled"]
|
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
deluge-frontend:
|
deluge-frontend:
|
||||||
|
|
|
@ -20,7 +20,6 @@ services:
|
||||||
- traefik.http.routers.dokuwiki.entrypoints=https
|
- traefik.http.routers.dokuwiki.entrypoints=https
|
||||||
- traefik.http.routers.dokuwiki.tls=true
|
- traefik.http.routers.dokuwiki.tls=true
|
||||||
- traefik.docker.network=dokuwiki-frontend
|
- traefik.docker.network=dokuwiki-frontend
|
||||||
profiles: ["disabled"]
|
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
dokuwiki-frontend:
|
dokuwiki-frontend:
|
||||||
|
|
|
@ -3,7 +3,6 @@ services:
|
||||||
netdata:
|
netdata:
|
||||||
image: netdata/netdata
|
image: netdata/netdata
|
||||||
container_name: netdata
|
container_name: netdata
|
||||||
profiles: ["disabled"]
|
|
||||||
hostname: ${HOST_NETDATA}.${DOMAIN}
|
hostname: ${HOST_NETDATA}.${DOMAIN}
|
||||||
expose:
|
expose:
|
||||||
- 19999
|
- 19999
|
||||||
|
@ -39,7 +38,6 @@ services:
|
||||||
docker-proxy:
|
docker-proxy:
|
||||||
image: tecnativa/docker-socket-proxy
|
image: tecnativa/docker-socket-proxy
|
||||||
container_name: docker-proxy
|
container_name: docker-proxy
|
||||||
profiles: ["disabled"]
|
|
||||||
volumes:
|
volumes:
|
||||||
- /var/run/docker.sock:/var/run/docker.sock:ro
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
||||||
environment:
|
environment:
|
||||||
|
|
|
@ -22,7 +22,6 @@ services:
|
||||||
- traefik.http.routers.photo.entrypoints=https
|
- traefik.http.routers.photo.entrypoints=https
|
||||||
- traefik.http.routers.photo.tls=true
|
- traefik.http.routers.photo.tls=true
|
||||||
- traefik.docker.network=photo-frontend
|
- traefik.docker.network=photo-frontend
|
||||||
profiles: ["disabled"]
|
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
photo-frontend:
|
photo-frontend:
|
||||||
|
|
|
@ -4,7 +4,6 @@ services:
|
||||||
postgres:
|
postgres:
|
||||||
container_name: photonix-postgres
|
container_name: photonix-postgres
|
||||||
image: postgres:11.1-alpine
|
image: postgres:11.1-alpine
|
||||||
profiles: ["disabled"]
|
|
||||||
environment:
|
environment:
|
||||||
POSTGRES_DB: photonix
|
POSTGRES_DB: photonix
|
||||||
POSTGRES_PASSWORD: password
|
POSTGRES_PASSWORD: password
|
||||||
|
@ -16,14 +15,12 @@ services:
|
||||||
redis:
|
redis:
|
||||||
container_name: photonix-redis
|
container_name: photonix-redis
|
||||||
image: redis:6.2.2
|
image: redis:6.2.2
|
||||||
profiles: ["disabled"]
|
|
||||||
networks:
|
networks:
|
||||||
- photo-backend
|
- photo-backend
|
||||||
|
|
||||||
photonix:
|
photonix:
|
||||||
container_name: photonix
|
container_name: photonix
|
||||||
image: photonixapp/photonix:latest
|
image: photonixapp/photonix:latest
|
||||||
profiles: ["disabled"]
|
|
||||||
expose:
|
expose:
|
||||||
- 80
|
- 80
|
||||||
environment:
|
environment:
|
||||||
|
|
|
@ -4,7 +4,6 @@ services:
|
||||||
photoview-db:
|
photoview-db:
|
||||||
container_name: photoview-db
|
container_name: photoview-db
|
||||||
image: mariadb:10.5
|
image: mariadb:10.5
|
||||||
profiles: ["disabled"]
|
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
environment:
|
environment:
|
||||||
- MYSQL_DATABASE=photoview
|
- MYSQL_DATABASE=photoview
|
||||||
|
@ -19,7 +18,6 @@ services:
|
||||||
photoview:
|
photoview:
|
||||||
container_name: photoview
|
container_name: photoview
|
||||||
image: viktorstrate/photoview:2
|
image: viktorstrate/photoview:2
|
||||||
profiles: ["disabled"]
|
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
expose:
|
expose:
|
||||||
- 80
|
- 80
|
||||||
|
|
|
@ -6,7 +6,6 @@ services:
|
||||||
environment:
|
environment:
|
||||||
NODE_ENV: production
|
NODE_ENV: production
|
||||||
image: bpatrik/pigallery2:1.9.0-alpine
|
image: bpatrik/pigallery2:1.9.0-alpine
|
||||||
profiles: ["disabled"]
|
|
||||||
networks:
|
networks:
|
||||||
- photo-frontend
|
- photo-frontend
|
||||||
expose:
|
expose:
|
||||||
|
|
|
@ -4,7 +4,6 @@ services:
|
||||||
poste-io:
|
poste-io:
|
||||||
container_name: poste-io
|
container_name: poste-io
|
||||||
image: analogic/poste.io
|
image: analogic/poste.io
|
||||||
profiles: ["disabled"]
|
|
||||||
volumes:
|
volumes:
|
||||||
- ${ROOT_INSTALL}/data/poste.io:/data
|
- ${ROOT_INSTALL}/data/poste.io:/data
|
||||||
environment:
|
environment:
|
||||||
|
|
|
@ -7,7 +7,6 @@ services:
|
||||||
MYSQL_LOG_CONSOLE: "true"
|
MYSQL_LOG_CONSOLE: "true"
|
||||||
MYSQL_ROOT_PASSWORD: ${SEAFILE_DB_ROOT_PASSWORD}
|
MYSQL_ROOT_PASSWORD: ${SEAFILE_DB_ROOT_PASSWORD}
|
||||||
image: mariadb:10.1
|
image: mariadb:10.1
|
||||||
profiles: ["disabled"]
|
|
||||||
networks:
|
networks:
|
||||||
- seafile-backend
|
- seafile-backend
|
||||||
volumes:
|
volumes:
|
||||||
|
@ -17,13 +16,11 @@ services:
|
||||||
container_name: seafile-memcached
|
container_name: seafile-memcached
|
||||||
entrypoint: memcached -m 256
|
entrypoint: memcached -m 256
|
||||||
image: memcached:1.5.6
|
image: memcached:1.5.6
|
||||||
profiles: ["disabled"]
|
|
||||||
networks:
|
networks:
|
||||||
- seafile-backend
|
- seafile-backend
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
seafile:
|
seafile:
|
||||||
container_name: seafile
|
container_name: seafile
|
||||||
profiles: ["disabled"]
|
|
||||||
depends_on:
|
depends_on:
|
||||||
- seafile-db
|
- seafile-db
|
||||||
- seafile-memcached
|
- seafile-memcached
|
||||||
|
|
|
@ -6,7 +6,6 @@ services:
|
||||||
# build: .
|
# build: .
|
||||||
image: lissy93/dashy
|
image: lissy93/dashy
|
||||||
container_name: dashy
|
container_name: dashy
|
||||||
profiles: ["disabled"]
|
|
||||||
# Pass in your config file below, by specifying the path on your host machine
|
# Pass in your config file below, by specifying the path on your host machine
|
||||||
volumes:
|
volumes:
|
||||||
- ${ROOT_INSTALL}/data/dashy/config.yml:/app/public/conf.yml
|
- ${ROOT_INSTALL}/data/dashy/config.yml:/app/public/conf.yml
|
||||||
|
|
Loading…
Add table
Reference in a new issue