Skip to content

Commit

Permalink
Switch to docker compose.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonpugh committed May 20, 2024
1 parent e10f6ca commit be93a6a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ version: '3'
tasks:
start:
cmds:
- docker-compose up -d --build
- docker compose up -d --build
- task: install

install:
cmds:
- docker-compose exec operations ansible-playbook /usr/share/operations/playbook.yml
- docker compose exec operations ansible-playbook /usr/share/operations/playbook.yml

destroy:
cmds:
- docker-compose kill && docker-compose rm -fv
- docker compose kill && docker compose rm -fv

shell:
cmds:
- docker-compose exec operations bash
- docker compose exec operations bash

0 comments on commit be93a6a

Please sign in to comment.