New translations docker.mdx (Dutch)

[ci skip]
This commit is contained in:
crowdin 2024-08-09 13:29:59 +00:00
parent 8cda44a47d
commit 92eab61092

View File

@ -24,134 +24,135 @@ can be added as a cache handler.
## Example usage ## Example usage
1. Install [docker](https://docs.docker.com/get-docker/) and 1. Install [docker](https://docs.docker.com/get-docker/) and
[docker-compose](https://docs.docker.com/compose/install/) [docker-compose](https://docs.docker.com/compose/install/)
2. Create a `docker-compose.yml` file with the following:
```yml 2. Create a `docker-compose.yml` file with the following:
version: "3.7"
services: ```yml
app: version: "3.7"
image: castopod/castopod:latest
container_name: "castopod-app"
volumes:
- castopod-media:/var/www/castopod/public/media
environment:
MYSQL_DATABASE: castopod
MYSQL_USER: castopod
MYSQL_PASSWORD: changeme
CP_BASEURL: "https://castopod.example.com"
CP_ANALYTICS_SALT: changeme
CP_CACHE_HANDLER: redis
CP_REDIS_HOST: redis
CP_REDIS_PASSWORD: changeme
networks:
- castopod-app
- castopod-db
ports:
- 8000:8000
restart: unless-stopped
mariadb: services:
image: mariadb:10.5 app:
container_name: "castopod-mariadb" image: castopod/castopod:latest
networks: container_name: "castopod-app"
- castopod-db volumes:
volumes: - castopod-media:/var/www/castopod/public/media
- castopod-db:/var/lib/mysql environment:
environment: MYSQL_DATABASE: castopod
MYSQL_ROOT_PASSWORD: changeme MYSQL_USER: castopod
MYSQL_DATABASE: castopod MYSQL_PASSWORD: changeme
MYSQL_USER: castopod CP_BASEURL: "https://castopod.example.com"
MYSQL_PASSWORD: changeme CP_ANALYTICS_SALT: changeme
restart: unless-stopped CP_CACHE_HANDLER: redis
CP_REDIS_HOST: redis
CP_REDIS_PASSWORD: changeme
networks:
- castopod-app
- castopod-db
ports:
- 8000:8000
restart: unless-stopped
redis: mariadb:
image: redis:7.0-alpine image: mariadb:10.5
container_name: "castopod-redis" container_name: "castopod-mariadb"
command: --requirepass changeme networks:
volumes: - castopod-db
- castopod-cache:/data volumes:
networks: - castopod-db:/var/lib/mysql
- castopod-app environment:
MYSQL_ROOT_PASSWORD: changeme
MYSQL_DATABASE: castopod
MYSQL_USER: castopod
MYSQL_PASSWORD: changeme
restart: unless-stopped
volumes: redis:
castopod-media: image: redis:7.0-alpine
castopod-db: container_name: "castopod-redis"
castopod-cache: command: --requirepass changeme
volumes:
- castopod-cache:/data
networks:
- castopod-app
networks: volumes:
castopod-app: castopod-media:
castopod-db: castopod-db:
``` castopod-cache:
You have to adapt some variables to your needs (e.g. `CP_BASEURL`, networks:
`MYSQL_ROOT_PASSWORD`, `MYSQL_PASSWORD` and `CP_ANALYTICS_SALT`). castopod-app:
castopod-db:
```
3. Setup a reverse proxy for TLS (SSL/HTTPS) You have to adapt some variables to your needs (e.g. `CP_BASEURL`,
`MYSQL_ROOT_PASSWORD`, `MYSQL_PASSWORD` and `CP_ANALYTICS_SALT`).
TLS is mandatory for ActivityPub to work. This job can easily be handled by 3. Setup a reverse proxy for TLS (SSL/HTTPS)
a reverse proxy, for example with [Caddy](https://caddyserver.com/):
``` TLS is mandatory for ActivityPub to work. This job can easily be handled by
#castopod a reverse proxy, for example with [Caddy](https://caddyserver.com/):
castopod.example.com {
reverse_proxy localhost:8000
}
```
4. Run `docker-compose up -d`, wait for it to initialize and head on to ```
`https://castopod.example.com/cp-install` to finish setting up Castopod! #castopod
castopod.example.com {
reverse_proxy localhost:8000
}
```
5. You're all set, start podcasting! 🎙️🚀 4. Run `docker-compose up -d`, wait for it to initialize and head on to
`https://castopod.example.com/cp-install` to finish setting up Castopod!
5. You're all set, start podcasting! 🎙️🚀
## Environment Variables ## Environment Variables
- **castopod/castopod** and **castopod/app** - **castopod/castopod** and **castopod/app**
| Variable name | Type (`default`) | Default | | Variable name | Type (`default`) | Standaard |
| ------------------------------------- | ----------------------- | ---------------- | | ------------------------------------- | ------------------------------------------ | --------------------- |
| **`CP_BASEURL`** | string | `undefined` | | **`CP_BASEURL`** | tekenreeks | 'ongedefinieerd' |
| **`CP_MEDIA_BASEURL`** | ?string | `CP_BASEURL` | | **`CP_MEDIA_BASEURL`** | ?string | `CP_BASEURL` |
| **`CP_ADMIN_GATEWAY`** | ?string | `"cp-admin"` | | **`CP_ADMIN_GATEWAY`** | ?string | `"cp-admin"` |
| **`CP_AUTH_GATEWAY`** | ?string | `"cp-auth"` | | **`CP_AUTH_GATEWAY`** | ?string | `"cp-auth"` |
| **`CP_ANALYTICS_SALT`** | string | `undefined` | | **`CP_ANALYTICS_SALT`** | tekenreeks | 'ongedefinieerd' |
| **`CP_DATABASE_HOSTNAME`** | ?string | `"mariadb"` | | **`CP_DATABASE_HOSTNAME`** | ?string | `"mariadb"` |
| **`CP_DATABASE_NAME`** | ?string | `MYSQL_DATABASE` | | **`CP_DATABASE_NAME`** | ?string | `MYSQL_DATABASE` |
| **`CP_DATABASE_USERNAME`** | ?string | `MYSQL_USER` | | **`CP_DATABASE_USERNAME`** | ?string | `MYSQL_USER` |
| **`CP_DATABASE_PASSWORD`** | ?string | `MYSQL_PASSWORD` | | **`CP_DATABASE_PASSWORD`** | ?string | `MYSQL_PASSWORD` |
| **`CP_DATABASE_PREFIX`** | ?string | `"cp_"` | | **`CP_DATABASE_PREFIX`** | ?string | `"cp_"` |
| **`CP_CACHE_HANDLER`** | [`"file"` or `"redis"`] | `"file"` | | **`CP_CACHE_HANDLER`** | [`"file"` or `"redis"`] | `"file"` |
| **`CP_REDIS_HOST`** | ?string | `"localhost"` | | **`CP_REDIS_HOST`** | ?string | `"localhost"` |
| **`CP_REDIS_PASSWORD`** | ?string | `null` | | **`CP_REDIS_PASSWORD`** | ?string | `nul` |
| **`CP_REDIS_PORT`** | ?number | `6379` | | **`CP_REDIS_PORT`** | ?number | `6379` |
| **`CP_REDIS_DATABASE`** | ?number | `0` | | **`CP_REDIS_DATABASE`** | ?number | `0` |
| **`CP_EMAIL_SMTP_HOST`** | ?string | `undefined` | | **`CP_EMAIL_SMTP_HOST`** | ?string | 'ongedefinieerd' |
| **`CP_EMAIL_FROM`** | ?string | `undefined` | | **`CP_EMAIL_FROM`** | ?string | 'ongedefinieerd' |
| **`CP_EMAIL_SMTP_USERNAME`** | ?string | `"localhost"` | | **`CP_EMAIL_SMTP_USERNAME`** | ?string | `"localhost"` |
| **`CP_EMAIL_SMTP_PASSWORD`** | ?string | `null` | | **`CP_EMAIL_SMTP_PASSWORD`** | ?string | `null` |
| **`CP_EMAIL_SMTP_PORT`** | ?number | `25` | | **`CP_EMAIL_SMTP_PORT`** | ?number | `25` |
| **`CP_EMAIL_SMTP_CRYPTO`** | [`"tls"` or `"ssl"`] | `"tls"` | | **`CP_EMAIL_SMTP_CRYPTO`** | [`"tls"` or `"ssl"`] | `"tls"` |
| **`CP_ENABLE_2FA`** | ?boolean | `undefined` | | **`CP_ENABLE_2FA`** | ?boolean | 'ongedefinieerd' |
| **`CP_MEDIA_FILE_MANAGER`** | ?string | `undefined` | | **`CP_MEDIA_FILE_MANAGER`** | ?string | 'ongedefinieerd' |
| **`CP_MEDIA_S3_ENDPOINT`** | ?string | `undefined` | | **`CP_MEDIA_S3_ENDPOINT`** | ?string | 'ongedefinieerd' |
| **`CP_MEDIA_S3_KEY`** | ?string | `undefined` | | **`CP_MEDIA_S3_KEY`** | ?string | 'ongedefinieerd' |
| **`CP_MEDIA_S3_SECRET`** | ?string | `undefined` | | **`CP_MEDIA_S3_SECRET`** | ?string | 'ongedefinieerd' |
| **`CP_MEDIA_S3_REGION`** | ?string | `undefined` | | **`CP_MEDIA_S3_REGION`** | ?string | 'ongedefinieerd' |
| **`CP_MEDIA_S3_BUCKET`** | ?string | `undefined` | | **`CP_MEDIA_S3_BUCKET`** | ?string | 'ongedefinieerd' |
| **`CP_MEDIA_S3_PROTOCOL`** | ?number | `undefined` | | **`CP_MEDIA_S3_PROTOCOL`** | ?number | 'ongedefinieerd' |
| **`CP_MEDIA_S3_PATH_STYLE_ENDPOINT`** | ?boolean | `undefined` | | **`CP_MEDIA_S3_PATH_STYLE_ENDPOINT`** | ?boolean | 'ongedefinieerd' |
| **`CP_MEDIA_S3_KEY_PREFIX`** | ?string | `undefined` | | **`CP_MEDIA_S3_KEY_PREFIX`** | ?string | 'ongedefinieerd' |
| **`CP_DISABLE_HTTPS`** | ?[`0` or `1`] | `undefined` | | **`CP_DISABLE_HTTPS`** | ?[`0` or `1`] | 'ongedefinieerd' |
| **`CP_MAX_BODY_SIZE`** | ?number (with suffix) | `512M` | | **`CP_MAX_BODY_SIZE`** | ?number (with suffix) | `512M` |
| **`CP_PHP_MEMORY_LIMIT`** | ?number (with suffix) | `512M` | | **`CP_PHP_MEMORY_LIMIT`** | ?number (with suffix) | `512M` |
| **`CP_TIMEOUT`** | ?number | `900` | | **`CP_TIMEOUT`** | ?number | `900` |
- **castopod/web-server** - **castopod/web-server**
| Variable name | Type | Default | | Variable name | Type | Standaard |
| ---------------------- | --------------------- | ------- | | ---------------------- | ---------------------------------------- | --------- |
| **`CP_APP_HOSTNAME`** | ?string | `"app"` | | **`CP_APP_HOSTNAME`** | ?string | `"app"` |
| **`CP_MAX_BODY_SIZE`** | ?number (with suffix) | `512M` | | **`CP_MAX_BODY_SIZE`** | ?number (with suffix) | `512M` |
| **`CP_TIMEOUT`** | ?number | `900` | | **`CP_TIMEOUT`** | ?number | `900` |