Skip to content
Snippets Groups Projects
Commit 0d680afd authored by jurgenhaas's avatar jurgenhaas
Browse files

#10

- improve steps for NG deployment
parent 908b4894
No related branches found
No related tags found
No related merge requests found
......@@ -422,9 +422,14 @@ Debug:
- cd /data/app
- drush -y sset system.maintenance_mode 1
- cd -
- rm web/sites/default/files
- rm web/sites/default/private
- rsync -rlDzq --delete ./ /data/app
- cd /data/files/public
- if [[ ! -L config ]]; then ln -s ../../../config/default config; fi
- if [[ ! -L config ]]; then ln -s /var/www/html/config/default config; fi
- cd /data/app/web/sites/default
- if [[ (readlink files) != '/data/default/public' ]]; then rm files; ln -s /data/default/public files; fi
- if [[ (readlink private) != '/data/default/private' ]]; then rm private; ln -s /data/default/private private; fi
- cd /data/app
- PROXYIP=$(docker inspect traefik_traefik_1 | jq -r '.[0].NetworkSettings.Networks."traefik-public".IPAddress')
- sed -i "s/TRAEFIK-IP-PLACEHOLDER/${PROXYIP}/g" docker-compose.yml
......@@ -432,7 +437,8 @@ Debug:
- docker compose up -d --quiet-pull --remove-orphans
- docker compose exec -u root php chown -R www-data:www-data .
- docker compose exec -u root php chmod -R ug-w .
- docker compose exec -u root php chmod -R ug+w ./files
- docker compose exec -u root php chmod -R ug+w web/sites/*/files
- docker compose exec -u root php chmod -R ug+w web/sites/*/private
- drush -y cache-rebuild
- drush -y config-import
- drush -y updatedb
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment