bundles/docker-immich: only start auto-album-share when postgresql is actually running
This commit is contained in:
parent
3bcf7ad714
commit
7b51bb57f8
2 changed files with 8 additions and 2 deletions
|
@ -83,6 +83,9 @@ def auto_album_share(metadata):
|
||||||
'command': '/usr/local/bin/immich-auto-album-share.py',
|
'command': '/usr/local/bin/immich-auto-album-share.py',
|
||||||
'environment': metadata.get('docker-engine/containers/immich/environment'),
|
'environment': metadata.get('docker-engine/containers/immich/environment'),
|
||||||
'when': 'minutely',
|
'when': 'minutely',
|
||||||
|
'requisite': {
|
||||||
|
'docker-immich-postgresql.service',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -7,8 +7,11 @@
|
||||||
[Unit]
|
[Unit]
|
||||||
Description=Service for Timer ${timer}
|
Description=Service for Timer ${timer}
|
||||||
After=network.target
|
After=network.target
|
||||||
% if config.get('requires', ''):
|
% if config.get('requires', set()):
|
||||||
Requires=${config['requires']}
|
Requires=${' '.join(sorted(config['requires']))}
|
||||||
|
% endif
|
||||||
|
% if config.get('requisite', set()):
|
||||||
|
Requisite=${' '.join(sorted(config['requisite']))}
|
||||||
% endif
|
% endif
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
|
|
Loading…
Add table
Reference in a new issue