All Projects → hedgedoc → Container

hedgedoc / Container

HedgeDoc container image resources

Programming Languages

shell
77523 projects

Projects that are alternatives of or similar to Container

Trashemail
A hosted disposable email telegram bot; Extremely privacy friendly; Proudly hosted for community.
Stars: ✭ 408 (+173.83%)
Mutual labels:  hacktoberfest, docker-image, docker-compose
Portainer
Making Docker and Kubernetes management easy.
Stars: ✭ 20,434 (+13614.09%)
Mutual labels:  hacktoberfest, docker-image, docker-compose
Docker Compose Lamp
A basic LAMP stack environment built using Docker Compose.
Stars: ✭ 1,284 (+761.74%)
Mutual labels:  docker-image, docker-compose
Docker Ansible Playbook
Docker Image of Ansible for executing ansible-playbook command against an externally mounted set of Ansible playbooks
Stars: ✭ 90 (-39.6%)
Mutual labels:  hacktoberfest, docker-image
Docker Laravel
🐳 Docker Images for Laravel development
Stars: ✭ 101 (-32.21%)
Mutual labels:  docker-image, docker-compose
Dockest
Docker + Jest integration testing for Node.js
Stars: ✭ 81 (-45.64%)
Mutual labels:  hacktoberfest, docker-compose
Docker Superset
Repository for Docker Image of Apache-Superset. [Docker Image: https://hub.docker.com/r/abhioncbr/docker-superset]
Stars: ✭ 86 (-42.28%)
Mutual labels:  docker-image, docker-compose
Fusionauth Containers
Container definitions for docker, kubernetes, helm, and whatever containers come next!
Stars: ✭ 101 (-32.21%)
Mutual labels:  docker-image, docker-compose
Dockerfiles
lots of dockerfiles, based on alpine
Stars: ✭ 69 (-53.69%)
Mutual labels:  docker-image, docker-compose
Docker
最新lnmp环境,包含php, java,nginx, mysql, go, node, mongodb, openssh server, redis, crond xhprof,maven等服务
Stars: ✭ 120 (-19.46%)
Mutual labels:  docker-image, docker-compose
Goodwork
Self hosted project management and collaboration tool powered by TALL stack
Stars: ✭ 1,730 (+1061.07%)
Mutual labels:  hacktoberfest, docker-compose
Docker Workshop
Introduction to Docker tutorial
Stars: ✭ 124 (-16.78%)
Mutual labels:  docker-image, docker-compose
Custom War Packager
Custom Jenkins WAR packager for Jenkins
Stars: ✭ 77 (-48.32%)
Mutual labels:  hacktoberfest, docker-image
Cabot Docker
Docker Images to build full cabot environment
Stars: ✭ 75 (-49.66%)
Mutual labels:  docker-image, docker-compose
Azurestorageexplorer
☁💾 Manage your Azure Storage blobs, tables, queues and file shares from this simple and intuitive web application.
Stars: ✭ 88 (-40.94%)
Mutual labels:  hacktoberfest, docker-image
Bareos
Docker image for Bareos
Stars: ✭ 74 (-50.34%)
Mutual labels:  docker-image, docker-compose
Docker Multistreamer
Dockerized multistreamer
Stars: ✭ 90 (-39.6%)
Mutual labels:  docker-image, docker-compose
Laravel Docker K8s
Running Laravel project using Docker and Deploying using Kubernetes
Stars: ✭ 127 (-14.77%)
Mutual labels:  docker-image, docker-compose
Poco
Poco will help you to organise and manage Docker, Docker-Compose, Kubernetes, Openshift projects of any complexity using simple YAML config files to shorten the route from finding your project to initialising it in your local environment.
Stars: ✭ 66 (-55.7%)
Mutual labels:  docker-image, docker-compose
Directus Docker
Directus 6 Docker — Legacy Container [EOL]
Stars: ✭ 68 (-54.36%)
Mutual labels:  docker-image, docker-compose

HedgeDoc container

Test status #hedgedoc on matrix.org Try in PWD

HedgeDoc docker images are available in two flavors: Debian and Alpine. These are available at quay.io:

https://quay.io/repository/hedgedoc/hedgedoc

docker pull quay.io/hedgedoc/hedgedoc:1.7.2-debian
docker pull quay.io/hedgedoc/hedgedoc:1.7.2-alpine

We recommend using the Debian version for production deployments and Alpine for expert setups.

Prerequisite

See more here: https://docs.docker.com/

Usage

Get started

  1. Install docker and docker-compose, "Docker for Windows" or "Docker for Mac"
  2. Run git clone https://github.com/hedgedoc/container.git hedgedoc-container
  3. Change to the directory hedgedoc-container directory
  4. Run docker-compose up in your terminal
  5. Wait until see the log HTTP Server listening at port 3000, it will take few minutes based on your internet connection.
  6. Open http://127.0.0.1:3000

Update

Start your docker and enter the terminal, follow below commands:

cd hedgedoc-container ## enter the directory
git pull ## pull new commits
docker-compose pull ## pull new containers
docker-compose up ## turn on

Configuration

You can configure your container with a config file or with env vars. Check out https://docs.hedgedoc.org/configuration/ for more details.

Migrate from 1.6

Together with the update to HedgeDoc 1.7, the database user name, password and database name have been changed in docker-compose.yml.

In order to migrate the existing database to the new default credentials, run

docker-compose exec database createuser --superuser -Uhackmd postgres
docker-compose exec database psql -Upostgres -c "alter role hackmd rename to hedgedoc; alter role hedgedoc with password 'password'; alter database hackmd rename to hedgedoc;"

before running docker-compose up.

Migrate from docker-hackmd

If you used the docker-hackmd repository before, you can migrate to hedgedoc-container.

hedgedoc-container is fork of docker-hackmd, so you need to replace the upstream URL:

git remote set-url origin https://github.com/hedgedoc/container.git
git pull

Since both codebases diverged since the fork, we recommend that you read the HedgeDoc release notes at least since 1.6.0 and follow any instructions present there. A particular issue that has come up is when handling TLS connections when using a reverse proxy. You must set the X-Forwarded-Proto header correctly.

Backup

Start your docker and enter the terminal, follow below commands:

 docker-compose exec database pg_dump hedgedoc -U hedgedoc > backup.sql

Restore

Before starting the application for the first time, run these commands:

docker-compose up -d database
cat backup.sql | docker exec -i $(docker-compose ps -q database) psql -U hedgedoc

Custom build

The default setting is to use pre-built docker images. If you want to build your own containers uncomment the build section in the docker-compose.yml and edit the config.json.

If you change the database settings and don't use the CMD_DB_URL make sure you edit the .sequelizerc.

License

View license information for the software contained in this image.

Supported Docker versions

This image is officially supported on Docker version 17.03.1-CE.

Support for older versions (down to 1.12) is provided on a best-effort basis.

Please see the Docker installation documentation for details on how to upgrade your Docker daemon.

User Feedback

Issues

If you have any problems with or questions about this image, please contact us through a GitHub issue.

You can also reach many of the project maintainers via our matrix room #hedgedoc:matrix.org.

Contributing

You are invited to contribute new features, fixes, or updates, large or small; we are always thrilled to receive pull requests, and do our best to process them as fast as we can.

Happy HedgeDoc 😄

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].