I have currently a Bludit (3.15) instance running from Yunohost (11) running. But I am migrating my server to pure docker, ditching Yunohost; but keeping the site.
Steps that I have done:
- set up the following container for the new site:
Code: Select all
name: web
services:
docker:
container_name: bludit
ports:
- 8008:80
volumes:
- directory:/usr/share/nginx/html/bl-content
image: bludit/docker:latest
networks:
default:
external:
name: ext
- go through install.php
- from a location I have moved my whole old bluedit site:
Code: Select all
docker cp bl-content bluditcontainer:/usr/share/nginx/html/
1: is this process correct? I am missing / skipping anything?
2: can I chmod the parent, or any directory to a safer chmod?
Thanks!