Skip to content

Commit

Permalink
fix config.yml path
Browse files Browse the repository at this point in the history
  • Loading branch information
fb929 committed Feb 12, 2024
1 parent 97145e3 commit 1eef90c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM python:3.11-alpine
WORKDIR /code
ENV FLASK_APP=app.py
ENV FLASK_RUN_HOST=0.0.0.0
ENV CONFIG_FILE=/code/config.yml
ENV CONFIG_FILE=/etc/any-sync-admin/config.yml
RUN apk add --no-cache bash gcc musl-dev linux-headers libffi-dev
COPY code/requirements.txt requirements.txt
RUN pip install -r requirements.txt
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ ln -F -s docker-compose-dependences.yml docker-compose.override.yml

## make custom config
```
cp example/config.yml code/config.yml
# edit code/config.yml
cp example/config.yml etc/config.yml
# edit etc/config.yml
```

## Contribution
Expand Down

0 comments on commit 1eef90c

Please sign in to comment.