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