This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Voor twee potjes vol heb je nodig | |
| 100 gram ongezouten boter | |
| 200 gram fijne kristalsuiker | |
| 3 eieren + 1 eidooier | |
| 3 sinaasappels (rasp + 300-350ml sap) | |
| recept sinaasappelcur | |
| gaat in een pannetje de boter, suiker, sinaasappelrasp en – sap. Dat alles verwarm je zodat de boter kan smelten. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // https://timdeschryver.dev/blog/how-i-have-set-up-my-new-windows-development-environment-in-2022#enhancing-the-terminal | |
| winget install Microsoft.Edge | |
| winget install Google.Chrome | |
| winget install Mozilla.Firefox | |
| winget install Microsoft.Teams | |
| winget install Microsoft.PowerToys | |
| winget install Microsoft.WindowsTerminal | |
| winget install Microsoft.PowerShell |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: "3.4" | |
| services: | |
| db: | |
| image: postgres:9.6 | |
| networks: | |
| - kongback | |
| volumes: | |
| - pgdata:/var/lib/postgresql/data | |
| env_file: | |
| - kongstack.env |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "log": { | |
| "version": "1.2", | |
| "creator": { | |
| "name": "WebInspector", | |
| "version": "537.36" | |
| }, | |
| "pages": [], | |
| "entries": [ | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM node:10 | |
| LABEL maintainer="Luca Perret <[email protected]>" \ | |
| org.label-schema.vendor="Strapi" \ | |
| org.label-schema.name="Strapi Docker image" \ | |
| org.label-schema.description="Strapi containerized" \ | |
| org.label-schema.url="https://strapi.io" \ | |
| org.label-schema.vcs-url="https://github.com/strapi/strapi-docker" \ | |
| org.label-schema.version=latest \ | |
| org.label-schema.schema-version="1.0" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Docker weetjes | |
| Inloggen op bash van een container | |
| docker exec -it strapi-docker_api_1 bash | |
| docker exec -it strapi-docker_db_1 bash |