Compare commits
10 commits
05ebcc826e
...
fce4577a26
Author | SHA1 | Date | |
---|---|---|---|
![]() |
fce4577a26 | ||
![]() |
f7955a6aad | ||
![]() |
2f66070106 | ||
![]() |
f843f997be | ||
![]() |
c5a4b03d66 | ||
![]() |
0bbff68c65 | ||
![]() |
7fd09ede40 | ||
![]() |
89e7aafeac | ||
![]() |
c6ee520d85 | ||
![]() |
83387bea9f |
6 changed files with 10 additions and 4 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
@ -1,4 +1,7 @@
|
||||||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
||||||
|
|
||||||
# .env file
|
# .env file
|
||||||
.env
|
.env
|
||||||
|
|
||||||
|
# Kubernetes secrets config
|
||||||
|
kube.yaml
|
||||||
|
|
1
.tool-versions
Normal file
1
.tool-versions
Normal file
|
@ -0,0 +1 @@
|
||||||
|
nodejs 14.15.4
|
|
@ -84,5 +84,7 @@ COPY --from=builder /calcom/apps/web/package.json ./apps/web/package.json
|
||||||
COPY --from=builder calcom/packages/prisma/schema.prisma ./prisma/schema.prisma
|
COPY --from=builder calcom/packages/prisma/schema.prisma ./prisma/schema.prisma
|
||||||
COPY scripts scripts
|
COPY scripts scripts
|
||||||
|
|
||||||
|
COPY .env .env
|
||||||
|
|
||||||
EXPOSE 3000
|
EXPOSE 3000
|
||||||
CMD ["/calcom/scripts/start.sh"]
|
CMD ["/calcom/scripts/start.sh"]
|
||||||
|
|
|
@ -35,7 +35,7 @@ Note: `docker compose` without the hyphen is now the primary method of using doc
|
||||||
1. Clone calcom-docker
|
1. Clone calcom-docker
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone --recursive https://github.com/calcom/docker.git calcom-docker
|
git clone https://github.com/calcom/docker.git calcom-docker
|
||||||
```
|
```
|
||||||
|
|
||||||
2. Change into the directory
|
2. Change into the directory
|
||||||
|
|
2
calcom
2
calcom
|
@ -1 +1 @@
|
||||||
Subproject commit 21867c9cd43b69dfd9b1857cea3291edd56adc03
|
Subproject commit f83ed78cf692d977d08fcd186732ac64e1351b34
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
set -x
|
set -x
|
||||||
|
|
||||||
scripts/wait-for-it.sh ${DATABASE_HOST} -- echo "database is up"
|
source .env
|
||||||
npx prisma migrate deploy --schema /calcom/packages/prisma/schema.prisma
|
npx prisma migrate deploy --schema /calcom/packages/prisma/schema.prisma
|
||||||
yarn start
|
yarn start
|
||||||
|
|
Loading…
Reference in a new issue