1
0

Compare commits

..

No commits in common. "e62889437ff899408c95d37f1cfbb86362f305ad" and "88be388d37ff15989da9b58ece7af51418f8277c" have entirely different histories.

3 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ version: "3"
services:
server:
image: gitea/gitea:1.22.4
image: gitea/gitea:1.22.2
environment:
- "USER_UID=${USER_UID}"
- "USER_GID=${USER_GID}"

View File

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

View File

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