Skip to content

Commit 82d8d0e

Browse files
committed
Clean up of extra blank lines
1 parent 5367ffe commit 82d8d0e

File tree

2 files changed

+4
-23
lines changed

2 files changed

+4
-23
lines changed

src/docker-compose.yml

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ services:
1212
POSTGRES_PASSWORD: thispasswordisverysecure
1313
POSTGRES_DB: paws
1414

15-
16-
17-
1815
server:
1916
container_name: paws-compose-server
2017
build: ./server
@@ -27,7 +24,6 @@ services:
2724
environment:
2825
FLASK_ENV: development
2926

30-
3127
client:
3228
build: ./client
3329
container_name: paws-compose-client
@@ -40,21 +36,6 @@ services:
4036
stdin_open: true
4137

4238

43-
44-
45-
46-
47-
48-
49-
50-
51-
52-
53-
54-
55-
56-
57-
5839
#using named volumes fixs a windows docker bug relating to container permissions
5940
#https://stackoverflow.com/questions/49148754/docker-container-shuts-down-giving-data-directory-has-wrong-ownership-error-wh
6041
volumes:

src/server/start_server.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
echo "Sleeping for 10s..."
2-
sleep 10;
3-
echo "Running Alembic";
4-
alembic upgrade head;
2+
sleep 10
3+
echo "Running Alembic"
4+
alembic upgrade head
55
echo "Starting Flask"
6-
python -m flask run --host=0.0.0.0
6+
python -m flask run --host=0.0.0.0

0 commit comments

Comments
 (0)