Minor changes

This commit is contained in:
2025-08-08 18:18:47 -04:00
parent 857f0daa95
commit 4b3eef4150
3 changed files with 6 additions and 6 deletions

View File

@@ -22,10 +22,10 @@ in
# Stop left over container by the same name
ExecStartPre = "${pkgs.bash}/bin/bash -c '${pkgs.docker-compose}/bin/docker-compose down || true'";
# Démarrer les conteneurs avec Docker Compose
# Start the services using Docker Compose
ExecStart = "${pkgs.docker-compose}/bin/docker-compose up -d";
# Arrêter et supprimer les conteneurs à larrêt
# Stop and remove containers on shutdown
ExecStop = "${pkgs.docker-compose}/bin/docker-compose down";
RemainAfterExit = true;