WIP: Working on player
This commit is contained in:
@@ -24,9 +24,7 @@ services:
|
||||
api:
|
||||
build:
|
||||
context: ./api
|
||||
target: development
|
||||
volumes:
|
||||
- ./api/src:/app/src
|
||||
target: production
|
||||
environment:
|
||||
DATABASE_URL: postgresql+asyncpg://${POSTGRES_USER:-rh_user}:${POSTGRES_PASSWORD:-default_secure_password}@db:5432/${POSTGRES_DB:-rehearsalhub}
|
||||
NEXTCLOUD_URL: ${NEXTCLOUD_URL:-https://cloud.example.com}
|
||||
@@ -35,7 +33,7 @@ services:
|
||||
REDIS_URL: redis://redis:6379/0
|
||||
SECRET_KEY: ${SECRET_KEY:-replace_me_with_32_byte_hex_default}
|
||||
INTERNAL_SECRET: ${INTERNAL_SECRET:-replace_me_with_32_byte_hex_default}
|
||||
DOMAIN: ${DOMAIN:-localhost}
|
||||
DOMAIN: localhost
|
||||
ports:
|
||||
- "8000:8000"
|
||||
networks:
|
||||
@@ -47,13 +45,11 @@ services:
|
||||
web:
|
||||
build:
|
||||
context: ./web
|
||||
target: development
|
||||
volumes:
|
||||
- ./web/src:/app/src
|
||||
target: production
|
||||
environment:
|
||||
API_URL: http://api:8000
|
||||
ports:
|
||||
- "3000:3000"
|
||||
- "3001:80"
|
||||
networks:
|
||||
- rh_net
|
||||
depends_on:
|
||||
|
||||
Reference in New Issue
Block a user