Skip to content

Commit eaa7a6b

Browse files
committed
v0.9.0
1 parent d24f700 commit eaa7a6b

File tree

4 files changed

+14
-6
lines changed

4 files changed

+14
-6
lines changed

docker-compose.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ services:
5252
volumes:
5353
- db-data:/var/lib/postgresql/data
5454

55-
5655
backend:
5756
build:
5857
context: backend
@@ -62,6 +61,8 @@ services:
6261
environment:
6362
PYTHONPATH: .
6463
DATABASE_URL: 'postgresql://aurora:AuroraAdminPanel321@postgres:5432/aurora'
64+
ENABLE_SENTRY: 'yes'
65+
SECREY_KEY: 'd7Wn3VRWMWPqpM5rqsdRAvW$$2Y7&MTwqnEFZrxA!tNDd&p9F#quNp*SsKzd&AWSLap!NkvW7DPsHktcJPA&cw@bZ$$hxpprDdGKk*h53tL47dDH2epM6JaqD6mfju4&bz'
6566
depends_on:
6667
- postgres
6768
volumes:
@@ -70,15 +71,22 @@ services:
7071
frontend:
7172
build:
7273
context: frontend
73-
dockerfile: Dockerfile
74+
dockerfile: Dockerfile-dev
7475
stdin_open: true
75-
command: bash -c "npm install && npm start"
76+
command: bash -c "yarn && yarn start"
7677
ports:
7778
- 3000:3000
7879
environment:
7980
- NODE_ENV=development
81+
- REACT_APP_VERSION=v0.9.0
8082
volumes:
8183
- ./frontend:/app
84+
85+
adminer:
86+
image: adminer
87+
restart: always
88+
ports:
89+
- 8070:8080
8290

8391
volumes:
8492
db-data:

frontend

nginx/nginx.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
server {
22
listen 80;
3-
server_name port-forward-admin;
3+
server_name aurora-admin-panel;
44

55
root /var/www/html;
66
index index.html;

0 commit comments

Comments
 (0)