Skip to content

Commit 04c5149

Browse files
authored
Merge pull request #30 from ezv-eets/ezv-camiuns-patch-1
Update clean-start-container.sh
2 parents ad9148c + c0feb97 commit 04c5149

1 file changed

Lines changed: 8 additions & 3 deletions

File tree

clean-start-container.sh

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1-
docker compose pull
2-
docker compose up -d
3-
docker compose logs -f
1+
#!/bin/bash
2+
3+
# This command stops containers AND removes volumes
4+
# associated with this docker-compose.yaml file.
5+
docker compose down -v
6+
7+
# Recreate everything
8+
docker compose up --build -d

0 commit comments

Comments
 (0)