Skip to content

Commit

Permalink
fix: 🐛 run shopkeeper-api container in detach mode (in the background)
Browse files Browse the repository at this point in the history
  • Loading branch information
nelsonfrank committed Jul 3, 2024
1 parent a81a597 commit 9d66d4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
-v $(pwd)/pgdata:/var/lib/postgresql/data \
-p 5455:5432 postgres
docker pull nelsonfrank/shopkeeper-api:main
docker run --rm -p 3001:3001 nelsonfrank/shopkeeper-api:main
docker run -d --name shopkeeper-api --rm -p 3001:3001 nelsonfrank/shopkeeper-api:main
docker run -d \
--name shopkeeper-pgadmin4 \
--network shopkeeper-network \
Expand Down

0 comments on commit 9d66d4f

Please sign in to comment.