Skip to content

Commit 08ecbc0

Browse files
authored
Merge pull request #11 from sartim/develop
Update docker setup
2 parents 5ef5fc0 + df90a3d commit 08ecbc0

File tree

5 files changed

+20
-6
lines changed

5 files changed

+20
-6
lines changed

.dockerignore

+3
Original file line numberDiff line numberDiff line change
@@ -566,3 +566,6 @@ FodyWeavers.xsd
566566

567567
# Dependencies
568568
Bcrypt.cpp
569+
570+
# Files
571+
.env

Dockerfile

+3-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ RUN git clone https://github.com/drogonframework/drogon
3333
# Build and install the Drogon library
3434
RUN cd drogon && \
3535
git submodule update --init && \
36-
mkdir build && cd build && cmake .. && make && make install
36+
mkdir build && cd build && \
37+
cmake -DCMAKE_BUILD_TYPE=Release .. && \
38+
make && make install
3739

3840
# Clone JWT-CPP repository
3941
RUN git clone https://github.com/Thalhammer/jwt-cpp.git

README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,14 @@ On the project root:
4848
$ cmake ..
4949
$ make
5050
$ ./drogoncore_user_service --action=run-server
51-
$ ./drogoncore_user_service --action=run-server
51+
52+
# Create tables
53+
54+
$ ./drogon_user_service --action=create-tables
55+
56+
# Drop tables
57+
58+
$ ./drogon_user_service --action=drop-tables
5259

5360
## Running with docker
5461

docker-compose.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ services:
55
context: .
66
dockerfile: Dockerfile
77
container_name: user_service
8+
ports:
9+
- "8000:8000"
810
environment:
911
- SECRET_KEY=${SECRET_KEY}
1012
- DB_HOST=${DB_HOST}

scripts/create_model_json.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
cat << EOF > models/model.json
22
{
33
"rdbms": "postgresql",
4-
"host": ${DB_HOST},
4+
"host": "${DB_HOST}",
55
"port": 5432,
6-
"dbname": ${DB_NAME},
6+
"dbname": "${DB_NAME}",
77
"schema": "public",
8-
"user": ${DB_USER},
9-
"password": ${DB_PASSWORD},
8+
"user": "${DB_USER}",
9+
"password": "${DB_PASSWORD}",
1010
"tables": [
1111
"users",
1212
"roles",

0 commit comments

Comments
 (0)