Don't wanna be here? Send us removal request.
Text
How to backup google workspace (gmail, drive, calendar...)
How to backup google workspace (gmail, drive, calendar…)
What if a problem happens with google? Don’t loose your data! There are many available options for doing this, but by 2022-10-07 the most cost efficient is the service from the folks at https://cloudally.com It’s US$3 by the moment of doing this, with a special discount for education institutions.
View On WordPress
0 notes
Text
How to update Gitlab inside a docker docker-compose container?
How to update Gitlab inside a docker docker-compose container?
Verify container volumes We need to know the id of the container and the port mappings running on the machine docker ps /* b7de284bc35c gitlab/gitlab-ce:latest ... 0.0.0.0:8222->22/tcp, :::8222->22/tcp, 0.0.0.0:8280->80/tcp, :::8280->80/tcp, 0.0.0.0:2443->443/tcp, :::2443->443/tcp gitlab-web-1 */ docker container inspect -f "{{ json .HostConfig.Binds }}" b7de284bc35c | python3 -m…
View On WordPress
0 notes
Text
How to install nextcloud using docker-compose?
How to install nextcloud using docker-compose?
Install next-cloud in your own machine using docker and docker-compose. Create the following files at NEXCLOUD_HOME folder: docker-compose.yml version: '3.6' services: db: env_file: - .env image: mariadb:10.5 restart: always command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW volumes: - '$NEXTCLOUD_HOME/var/lib/db:/var/lib/db' app: env_file: - .env image: nextcloud restart:…
View On WordPress
1 note
·
View note