restart always to unless-stopped

This commit is contained in:
2025-08-22 14:03:44 -03:00
parent 81f8187a31
commit a9cce165e1
7 changed files with 29 additions and 30 deletions

View File

@@ -13,7 +13,7 @@ services:
container_name: firefly_iii_core
networks:
- firefly_iii
restart: always
restart: unless-stopped
volumes:
- ./firefly_iii_upload:/var/www/html/storage/upload
env_file: .env
@@ -27,7 +27,7 @@ services:
container_name: firefly_iii_db
networks:
- firefly_iii
restart: always
restart: unless-stopped
env_file: .db.env
volumes:
- ./firefly_iii_db:/var/lib/mysql
@@ -35,7 +35,7 @@ services:
importer:
image: fireflyiii/data-importer:latest
hostname: importer
restart: always
restart: unless-stopped
container_name: firefly_iii_importer
networks:
- firefly_iii
@@ -48,7 +48,7 @@ services:
importer_mor:
image: fireflyiii/data-importer:latest
hostname: importer
restart: always
restart: unless-stopped
container_name: firefly_iii_importer_mor
networks:
- firefly_iii
@@ -65,7 +65,7 @@ services:
#
image: alpine
container_name: firefly_iii_cron
restart: always
restart: unless-stopped
command: sh -c "echo \"0 3 * * * wget -qO- http://app:8080/api/v1/cron/REPLACEME\" | crontab - && crond -f -L /dev/stdout"
networks:
- firefly_iii