[PR #246] Added a docker compose with sample application for the Umbraco CMS #324

Open
opened 2025-11-06 14:23:47 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/docker/awesome-compose/pull/246
Author: @CarlSargunar
Created: 6/3/2022
Status: 🔄 Open

Base: masterHead: master


📝 Commits (10+)

📊 Changes

64 files changed (+4260 additions, -8 deletions)

View changed files

.vscode/launch.json (+35 -0)
.vscode/tasks.json (+41 -0)
📝 react-java-mysql/backend/Dockerfile (+2 -2)
📝 sparkjava-mysql/backend/Dockerfile (+2 -2)
📝 sparkjava/sparkjava/Dockerfile (+2 -2)
📝 spring-postgres/backend/Dockerfile (+2 -2)
umbraco-cms/app/db/Dockerfile (+25 -0)
umbraco-cms/app/db/Umbraco.mdf (+0 -0)
umbraco-cms/app/db/Umbraco_log.ldf (+0 -0)
umbraco-cms/app/db/setup.sql (+15 -0)
umbraco-cms/app/db/startup.sh (+22 -0)
umbraco-cms/app/umbraco.sln (+22 -0)
umbraco-cms/app/umbracocms/.gitignore (+478 -0)
umbraco-cms/app/umbracocms/Dockerfile (+17 -0)
umbraco-cms/app/umbracocms/Program.cs (+23 -0)
umbraco-cms/app/umbracocms/Properties/launchSettings.json (+29 -0)
umbraco-cms/app/umbracocms/Startup.cs (+74 -0)
umbraco-cms/app/umbracocms/Views/CV.cshtml (+29 -0)
umbraco-cms/app/umbracocms/Views/Contact.cshtml (+54 -0)
umbraco-cms/app/umbracocms/Views/Home.cshtml (+13 -0)

...and 44 more files

📄 Description

This is a working installation of the Umbraco CMS with a separate database container. It uses a sample template so there is some actual content on the website to edit.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/docker/awesome-compose/pull/246 **Author:** [@CarlSargunar](https://github.com/CarlSargunar) **Created:** 6/3/2022 **Status:** 🔄 Open **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (10+) - [`8f0a75d`](https://github.com/docker/awesome-compose/commit/8f0a75de4538a77696dc62f5334f6054813bf7a7) update java samples to use eclipse temurin instead of opendjdk (#245) - [`4b0685f`](https://github.com/docker/awesome-compose/commit/4b0685f359dde116afb6c147c3d861b1fedfeea7) Initial Commit - Umbraco CMS - [`b8cbf8b`](https://github.com/docker/awesome-compose/commit/b8cbf8b999f6573b4f79156f8c2915ebfd959a90) wip - experimenting with Docker file - [`27be926`](https://github.com/docker/awesome-compose/commit/27be926117182cc0a4972b8576649d0143fb32be) clean start - [`768a8f1`](https://github.com/docker/awesome-compose/commit/768a8f10bf91fb7cf267fbf890ecd72064b03a96) Database + Notes added - [`6f0b003`](https://github.com/docker/awesome-compose/commit/6f0b003faa27101c1b942e3ce16e844cadaaca2e) Docker Compose File - [`085dcae`](https://github.com/docker/awesome-compose/commit/085dcae73692f2dac547e5a7e1e2c60bfd110899) Readme notes - [`8fc9904`](https://github.com/docker/awesome-compose/commit/8fc9904238e6ad22d657480df5bef52cfb44753f) wip - DB - [`bf9db21`](https://github.com/docker/awesome-compose/commit/bf9db218096e9109faf03c0acbc3d76590fb1f31) wip - try with a db container - [`3c8b712`](https://github.com/docker/awesome-compose/commit/3c8b71245fb073537e30c9bc157b550717daa6a2) wip - split app in two ### 📊 Changes **64 files changed** (+4260 additions, -8 deletions) <details> <summary>View changed files</summary> ➕ `.vscode/launch.json` (+35 -0) ➕ `.vscode/tasks.json` (+41 -0) 📝 `react-java-mysql/backend/Dockerfile` (+2 -2) 📝 `sparkjava-mysql/backend/Dockerfile` (+2 -2) 📝 `sparkjava/sparkjava/Dockerfile` (+2 -2) 📝 `spring-postgres/backend/Dockerfile` (+2 -2) ➕ `umbraco-cms/app/db/Dockerfile` (+25 -0) ➕ `umbraco-cms/app/db/Umbraco.mdf` (+0 -0) ➕ `umbraco-cms/app/db/Umbraco_log.ldf` (+0 -0) ➕ `umbraco-cms/app/db/setup.sql` (+15 -0) ➕ `umbraco-cms/app/db/startup.sh` (+22 -0) ➕ `umbraco-cms/app/umbraco.sln` (+22 -0) ➕ `umbraco-cms/app/umbracocms/.gitignore` (+478 -0) ➕ `umbraco-cms/app/umbracocms/Dockerfile` (+17 -0) ➕ `umbraco-cms/app/umbracocms/Program.cs` (+23 -0) ➕ `umbraco-cms/app/umbracocms/Properties/launchSettings.json` (+29 -0) ➕ `umbraco-cms/app/umbracocms/Startup.cs` (+74 -0) ➕ `umbraco-cms/app/umbracocms/Views/CV.cshtml` (+29 -0) ➕ `umbraco-cms/app/umbracocms/Views/Contact.cshtml` (+54 -0) ➕ `umbraco-cms/app/umbracocms/Views/Home.cshtml` (+13 -0) _...and 44 more files_ </details> ### 📄 Description This is a working installation of the Umbraco CMS with a separate database container. It uses a sample template so there is some actual content on the website to edit. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2025-11-06 14:23:47 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/awesome-compose#324