forked from daedalus-developers/auth-sveltekit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
29 lines (28 loc) · 741 Bytes
/
docker-compose.yml
File metadata and controls
29 lines (28 loc) · 741 Bytes
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
version: '3.8'
services:
app:
image: auth-kit
build:
context: .
dockerfile: Dockerfile
container_name: auth-kit-sqlite
ports:
- 3000:3000
environment:
- DATABASE_URL=${DATABASE_URL}
- DATABASE_AUTH_TOKEN=${DATABASE_AUTH_TOKEN}
- SMTP_PORT=${SMTP_PORT}
- SMTP_HOST=${SMTP_HOST}
- SMTP_USER=${SMTP_USER}
- SMTP_PASSWORD=${SMTP_PASSWORD}
- SMTP_FROM_NAME=${SMTP_FROM_NAME}
- SMTP_FROM_EMAIL=${SMTP_FROM_EMAIL}
- SMTP_REPLY_TO=${SMTP_REPLY_TO}
- ORIGIN=${ORIGIN}
volumes:
- ./data:/app/data
# healthcheck:
# test: ['CMD', 'curl', '-f', 'http://localhost:3000/']
# interval: 30s
# timeout: 10s
# retries: 3