Skip to content

Commit

Permalink
feat(docker): update docker-compose for restart always
Browse files Browse the repository at this point in the history
  • Loading branch information
rmrf committed Mar 31, 2024
1 parent 031ae67 commit 262c6d5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ services:
- ./configurations:/app/configurations
command:
- '-config=/app/configurations/config.toml'
restart: always
ports:
- 8080:8080

Expand All @@ -29,6 +30,7 @@ services:
- '--config.file=/etc/alertmanager/alertmanager.conf'
ports:
- 9093:9093
restart: always
depends_on:
- ssl-certs-check

Expand All @@ -47,6 +49,7 @@ services:
- alertmanager:alertmanager
ports:
- 9090:9090
restart: always
depends_on:
- ssl-certs-check

Expand All @@ -62,5 +65,6 @@ services:
- ./configurations/grafana_dashboards:/var/lib/grafana/dashboards
ports:
- 3000:3000
restart: always
depends_on:
- ssl-certs-check
- ssl-certs-check

0 comments on commit 262c6d5

Please sign in to comment.