create

Search

You can find the results of your search below.

Docker mailserver @docker_notes
16 Hits, Last modified:
ail. So the following seems to meet my needs: *create file ''ll.sh'' *<code>#!/bin/sh exec ls -la "... 'sqlite3 /app/mailserver.db'' to start sqlite and create or open mailserver.db. *''.open /app/mailserver... eates a table like that: ===sql code=== <code sql>CREATE TABLE IF NOT EXISTS `virtual_domains` ( `id` int... CHARSET=utf8;</code> ===sqlite code=== <code sql>CREATE TABLE IF NOT EXISTS 'virtual_domains' ( id INTE
Docker-Compose @docker_notes
12 Hits, Last modified:
d** *''%%docker-compose up -d --build --force-recreate%%'' * ''-d'' * ''%%--build%%'' on require... se includes building an image * ''%%--force-recreate%%'' *''docker-compose down'' *''docker-compos... ===Networking===== By default Docker-Compose will create a new network for the given compose file. You can... fining custom networks in your compose file. ====Create and assign custom network==== *Example:* <code y