summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrr- <rr-@sakuya.pl>2018-08-04 13:19:02 +0200
committerrr- <rr-@sakuya.pl>2018-08-04 13:19:02 +0200
commit45b6df020a49815a941a412dac4247ce66188fa2 (patch)
treeb32687bc1f5e3ee17f45d62cd945f6fff553409a
parent8da22cbd5ed39a9c5f9fc608804009bafbd9b1ac (diff)
build: fix paths to config files
-rw-r--r--INSTALL.md2
-rw-r--r--docker-compose.yml.example2
-rw-r--r--server/Dockerfile2
3 files changed, 3 insertions, 3 deletions
diff --git a/INSTALL.md b/INSTALL.md
index eb67714..05ee4db 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -12,7 +12,7 @@ and Docker Compose (version 1.6.0 or greater) already installed.
2. Configure the application:
```console
- user@host:szuru$ cp server/config.yaml.dist config.yaml
+ user@host:szuru$ cp server/config.yaml.dist server/config.yaml
user@host:szuru$ edit config.yaml
```
diff --git a/docker-compose.yml.example b/docker-compose.yml.example
index b44449f..ab8ab2e 100644
--- a/docker-compose.yml.example
+++ b/docker-compose.yml.example
@@ -38,7 +38,7 @@ services:
## If more customizations that are not covered in `config.yaml.dist` are needed
## Comment this line if you are not going
## to supply a YAML file
- - ./config.yaml:/opt/config.yaml
+ - ./server/config.yaml:/opt/app/config.yaml
## HTTP container for frontend
frontend:
diff --git a/server/Dockerfile b/server/Dockerfile
index 3aa5ab3..dd5bd5a 100644
--- a/server/Dockerfile
+++ b/server/Dockerfile
@@ -3,7 +3,7 @@ WORKDIR /opt/app
COPY alembic.ini wait-for-es generate-thumb ./
COPY szurubooru/ ./szurubooru/
-COPY config.yaml.dist ../
+COPY config.yaml.dist ./
FROM python:3.6-slim