-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose-local.yaml
34 lines (34 loc) · 1.13 KB
/
docker-compose-local.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
services:
app:
build:
context: "."
dockerfile: ./apps/platform/Dockerfile
args:
# Intentionally leaving BUILD_VERSION blank so that current time is used to ensure static assets are always refetched
- BUILD_VERSION=
ports:
- "3000:3000"
environment:
REDIS_HOST: host.docker.internal
REDIS_PORT: 6379
UESIO_BUNDLES_BUCKET_NAME: uesiobundlestore-dev
UESIO_CACHE_SITE_BUNDLES: "true"
UESIO_DB_DATABASE: postgresio
UESIO_DB_HOST: host.docker.internal
UESIO_DB_USER: postgres
UESIO_DB_PASSWORD: mysecretpassword
UESIO_DB_PORT: 5432
UESIO_PLATFORM_BUNDLESTORE_CREDENTIALS: uesio/core.aws
UESIO_PLATFORM_BUNDLESTORE_TYPE: uesio.local
UESIO_PLATFORM_FILESOURCE_CREDENTIALS: uesio/core.aws
UESIO_PLATFORM_FILESOURCE_TYPE: uesio.local
UESIO_SESSION_STORE: redis
UESIO_USERFILES_BUCKET_NAME: uesiofiles-dev
UESIO_MOCK_AUTH: "true"
UESIO_USE_HTTPS: "true"
UESIO_DEBUG_SQL: "true"
PORT: 3000
UESIO_DEV: "true"
UESIO_PRIMARY_DOMAIN: "uesio-dev.com"
volumes:
- ./apps/platform/ssl:/ssl