ff-handbook/webpage/code/strapi-compose.yml

19 lines
604 B
YAML
Raw Normal View History

2025-02-04 12:41:43 +01:00
ff-cms:
image: docker.registry.jk-effects.cloud/ehrenamt/ff-webpage/cms:<version>
container_name: ff_cms
restart: unless-stopped
environment:
- DATABASE_CLIENT=mysql
- DATABASE_HOST=ff-db
- DATABASE_NAME=ffcms
- DATABASE_USERNAME=cms
- DATABASE_PASSWORD=<dbuserpasswd>
2025-04-22 10:21:05 +02:00
- JWT_SECRET=<random string>
- ADMIN_JWT_SECRET=<random string>
- APP_KEYS=<random string> # oder<random string>,<random string>,...
- API_TOKEN_SALT=<random string>
- TRANSFER_TOKEN_SALT=<random string>
2025-02-04 12:41:43 +01:00
volumes:
- <volume|local path>:/app/public/uploads
ports:
- "1337:1337"