|
1 | 1 | services: |
2 | | - ttpx-postgres: |
| 2 | + rtap-postgres: |
3 | 3 | image: postgres:16-alpine |
4 | | - container_name: ttpx-postgres |
| 4 | + container_name: rtap-postgres |
5 | 5 | environment: |
6 | | - POSTGRES_USER: ${TTPX_POSTGRES_USER} |
7 | | - POSTGRES_PASSWORD: ${TTPX_POSTGRES_PASSWORD} |
8 | | - POSTGRES_DB: ${TTPX_POSTGRES_DB} |
| 6 | + POSTGRES_USER: ${RTAP_POSTGRES_USER} |
| 7 | + POSTGRES_PASSWORD: ${RTAP_POSTGRES_PASSWORD} |
| 8 | + POSTGRES_DB: ${RTAP_POSTGRES_DB} |
9 | 9 | volumes: |
10 | | - - ttpx-postgres-data:/var/lib/postgresql/data |
| 10 | + - rtap-postgres-data:/var/lib/postgresql/data |
11 | 11 | restart: unless-stopped |
12 | 12 |
|
13 | | - ttpx-web: |
14 | | - image: ghcr.io/initstring/ttpx:v0.2.2 |
15 | | - container_name: ttpx-web |
| 13 | + rtap-web: |
| 14 | + image: ghcr.io/initstring/rtap:v0.2.2 |
| 15 | + container_name: rtap-web |
16 | 16 | depends_on: |
17 | | - - ttpx-postgres |
| 17 | + - rtap-postgres |
18 | 18 | environment: |
19 | 19 | NODE_ENV: production |
20 | | - PORT: ${TTPX_PORT} |
21 | | - DATABASE_URL: ${TTPX_DATABASE_URL} |
22 | | - AUTH_URL: ${TTPX_AUTH_URL} |
23 | | - AUTH_SECRET: ${TTPX_AUTH_SECRET} |
24 | | - INITIAL_ADMIN_EMAIL: ${TTPX_INITIAL_ADMIN_EMAIL} |
25 | | - AUTH_PASSKEYS_ENABLED: ${TTPX_AUTH_PASSKEYS_ENABLED} |
26 | | - GOOGLE_CLIENT_ID: ${TTPX_GOOGLE_CLIENT_ID} |
27 | | - GOOGLE_CLIENT_SECRET: ${TTPX_GOOGLE_CLIENT_SECRET} |
| 20 | + PORT: ${RTAP_PORT} |
| 21 | + DATABASE_URL: ${RTAP_DATABASE_URL} |
| 22 | + AUTH_URL: ${RTAP_AUTH_URL} |
| 23 | + AUTH_SECRET: ${RTAP_AUTH_SECRET} |
| 24 | + INITIAL_ADMIN_EMAIL: ${RTAP_INITIAL_ADMIN_EMAIL} |
| 25 | + AUTH_PASSKEYS_ENABLED: ${RTAP_AUTH_PASSKEYS_ENABLED} |
| 26 | + GOOGLE_CLIENT_ID: ${RTAP_GOOGLE_CLIENT_ID} |
| 27 | + GOOGLE_CLIENT_SECRET: ${RTAP_GOOGLE_CLIENT_SECRET} |
28 | 28 | ports: |
29 | | - - "${TTPX_PORT}:${TTPX_PORT}" |
| 29 | + - "${RTAP_PORT}:${RTAP_PORT}" |
30 | 30 | restart: unless-stopped |
31 | 31 |
|
32 | 32 | # If you need TLS, place your own reverse proxy (e.g., Traefik, Caddy, Nginx) |
33 | | -# in front of ttpx-web and forward port 80/443 to ${PORT}. |
| 33 | +# in front of rtap-web and forward port 80/443 to ${PORT}. |
34 | 34 |
|
35 | 35 | volumes: |
36 | | - ttpx-postgres-data: |
37 | | - name: ttpx-postgres-data |
| 36 | + rtap-postgres-data: |
| 37 | + name: rtap-postgres-data |
0 commit comments