Skip to content

Commit

Permalink
chore: use container name instead of service in docker commands
Browse files Browse the repository at this point in the history
  • Loading branch information
amessbee committed Oct 22, 2024
1 parent 7ba6837 commit c771890
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions contract/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"scripts": {
"start:docker": "docker compose up -d",
"docker:logs": "docker compose logs --tail 200 -f",
"docker:bash": "docker compose exec agd bash",
"docker:make": "docker compose exec agd make -C /ws-offer-up/contract",
"docker:bash": "docker exec agd bash",
"docker:make": "docker exec agd make -C /ws-offer-up/contract",
"docker:lower-bundle-cost": "yarn docker:make mint100 lower-bundle-cost",
"docker:copy-bundles": "./scripts/copy-bundles.sh",
"docker:copy-Makefile": "docker exec agd mkdir -p /ws-offer-up/contract; docker cp Makefile agd:/ws-offer-up/contract/",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
"scripts": {
"start:docker": "cd contract && docker compose up -d",
"docker:logs": "cd contract; docker compose logs --tail 200 -f",
"docker:bash": "cd contract; docker compose exec agd bash",
"docker:make": "cd contract; docker compose exec agd make -C /ws-offer-up/contract",
"docker:bash": "cd contract; docker exec agd bash",
"docker:make": "cd contract; docker exec agd make -C /ws-offer-up/contract",
"make:help": "make -C contract list",
"start:contract": "cd contract && yarn start",
"start:ui": "cd ui && yarn dev",
Expand Down

0 comments on commit c771890

Please sign in to comment.