1
0

Update outline version

This commit is contained in:
Anton Vakhrushev 2024-08-05 10:11:42 +03:00
parent 3b11a63fa0
commit e76b31fd99
Signed by: av
GPG Key ID: 581F7473F7A21FA2
2 changed files with 4 additions and 1 deletions

View File

@ -2,7 +2,7 @@ version: "3.2"
services: services:
outline-app: outline-app:
image: outlinewiki/outline:0.77.2 image: outlinewiki/outline:0.78.0
ports: ports:
- "${WEB_SERVER_PORT}:3000" - "${WEB_SERVER_PORT}:3000"
depends_on: depends_on:

View File

@ -58,4 +58,7 @@ def deploy(app_name: str, compose_file="docker-compose.yml", dirs=None):
c.run( c.run(
f"docker-compose --project-name {shlex.quote(app_name)} --env-file=.env.prod up --detach --remove-orphans" f"docker-compose --project-name {shlex.quote(app_name)} --env-file=.env.prod up --detach --remove-orphans"
) )
c.run(
f"docker system prune --volumes --force"
)
print("Done.") print("Done.")