Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyestein committed Nov 30, 2023
1 parent c381ef5 commit 982065c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,13 @@ Ports need to be configured such that they don't clash with any other applicatio
### Start
From the _PIXL_ directory:
```bash
bin/up.sh pixl_dev
bin/pixldc pixl_dev up
```

### Stop
From the _PIXL_ directory:
```bash
bin/down.sh pixl_dev
bin/pixldc pixl_dev down
```

## Analysis
Expand Down
2 changes: 1 addition & 1 deletion bin/pixldc
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ PROJECT_DIR = os.path.dirname(BIN_DIR)
COMPOSE_FILE = os.path.join(PROJECT_DIR, 'docker-compose.yml')

# The first arg is necessary even if it looks repetitive! Equivalent to bash's $0.
docker_args = ['docker', 'compose', '--file', COMPOSE_FILE, '--project-name', (args.project), args.command]
docker_args = ['docker', 'compose', '--file', COMPOSE_FILE, '--project-name', args.project, args.command]

# up gets these options for free
if args.command == 'up':
Expand Down

0 comments on commit 982065c

Please sign in to comment.