Ecco come appare il mio docker-compose.yml.
nginx:
container_name: 'nginx'
image: 'nginx:1.11'
restart: 'always'
ports:
- '80:80'
- '443:443'
volumes:
- '/opt/nginx/conf.d:/etc/nginx/conf.d:ro'
links:
- 'anything'
Ora ho bisogno di aggiungere del contenuto tramite script di shell (su un server Ubuntu). Non sono del tutto sicuro che sia possibile:
- Aggiungi un nuovo elemento a
nginx/links
, se non esiste - Aggiunge il
newthing
blocco se non esiste alcun blocco di newthing
Il nuovo contenuto dovrebbe apparire così:
nginx:
container_name: 'nginx'
image: 'nginx:1.11'
restart: 'always'
ports:
- '80:80'
- '443:443'
volumes:
- '/opt/nginx/conf.d:/etc/nginx/conf.d:ro'
- '/etc/letsencrypt:/etc/letsencrypt'
links:
- 'anything'
- 'newthing'
newthing:
container_name: foo
image: 'newthing:1.2.3'
restart: always
hostname: 'example.com'
ruamel.yaml
libreria di Python.
sed
,awk
eregular expressions
per aggiornare il file.