Compare commits
No commits in common. "730b434ef280d4d75deac8b6e962933343dc7e9a" and "cb8787c7211e1a6e408250ecafc96d561141b482" have entirely different histories.
730b434ef2
...
cb8787c721
2 changed files with 10 additions and 1 deletions
|
@ -42,6 +42,9 @@ services:
|
|||
healthcheck:
|
||||
# prettier-ignore
|
||||
test: ['CMD-SHELL', 'wget -q --spider --proxy=off localhost:3000/health || exit 1']
|
||||
ports:
|
||||
- '0.0.0.0:3000:3000'
|
||||
- '[::]:3000:3000'
|
||||
depends_on:
|
||||
- db
|
||||
- redis
|
||||
|
@ -69,6 +72,9 @@ services:
|
|||
healthcheck:
|
||||
# prettier-ignore
|
||||
test: ['CMD-SHELL', 'wget -q --spider --proxy=off localhost:4000/api/v1/streaming/health || exit 1']
|
||||
ports:
|
||||
- '0.0.0.0:4000:4000'
|
||||
- '[::]:4000:4000'
|
||||
depends_on:
|
||||
- db
|
||||
- redis
|
||||
|
|
|
@ -24,6 +24,9 @@ services:
|
|||
image: seafileltd/seafile-mc:9.0.10
|
||||
container_name: seafile
|
||||
restart: always
|
||||
# ports:
|
||||
# - "81:80"
|
||||
# - "443:443" # If https is enabled, cancel the comment.
|
||||
volumes:
|
||||
- {{ data_dir }}/data:/shared # Requested, specifies the path to Seafile data persistent store.
|
||||
environment:
|
||||
|
|
Reference in a new issue