Update restart policy and disable kill-the-newsletter
This commit is contained in:
parent
97ae973211
commit
143466c92d
|
@ -28,6 +28,7 @@ services:
|
|||
seafile-storage:
|
||||
container_name: seafile-storage
|
||||
image: mariadb:10.11
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- MYSQL_ROOT_PASSWORD=${MARIADB_ROOT}
|
||||
volumes:
|
||||
|
@ -38,6 +39,7 @@ services:
|
|||
seafile-memcached:
|
||||
container_name: seafile-memcached
|
||||
image: memcached:1.6.18
|
||||
restart: unless-stopped
|
||||
entrypoint: memcached -m 256
|
||||
networks:
|
||||
- file
|
||||
|
@ -45,6 +47,7 @@ services:
|
|||
seafile:
|
||||
container_name: seafile
|
||||
image: seafileltd/seafile-mc:latest
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- $DATA/file/data:/shared
|
||||
environment:
|
||||
|
@ -72,5 +75,3 @@ services:
|
|||
|
||||
networks:
|
||||
file:
|
||||
external:
|
||||
external: true
|
||||
|
|
|
@ -21,3 +21,5 @@ services:
|
|||
- "traefik.http.routers.kill-the-newsletter.entrypoints=internalsecure"
|
||||
networks:
|
||||
- external
|
||||
deploy:
|
||||
replicas: 0
|
||||
|
|
|
@ -2,6 +2,7 @@ services:
|
|||
miniflux:
|
||||
container_name: miniflux
|
||||
image: miniflux/miniflux:latest
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- BASE_URL=https://miniflux.bhasher.com
|
||||
- DATABASE_URL=${MINIFLUX_DATABASE_URL}
|
||||
|
|
Loading…
Reference in New Issue