Updated mappings, sample yml and options.
This commit is contained in:
parent
18eb80ebf6
commit
eee7b009a4
27
dup.rb
27
dup.rb
@ -7,6 +7,16 @@ require 'ostruct'
|
||||
require 'json'
|
||||
|
||||
MAPPINGS = [
|
||||
# Syntax:
|
||||
# [name_in_yml, docker_option_name, lambda_for_creating_yml_for_container=nil, options={}]
|
||||
# Options are:
|
||||
# type: Sets type of this option
|
||||
# switch: Only adds the docker_option_name to the command, ignoring the value.
|
||||
# name: Value will be set to the name of the container (from yml filename or root element)
|
||||
# hidden: Will not be added to the run command
|
||||
# allow_empty: May be empty.
|
||||
# escape: If set to false, will not be shellescaped
|
||||
|
||||
['stdin_open', '--interactive', lambda{|c,i| c.Config.OpenStdin}, {:type=>:switch}],
|
||||
['tty', '--tty', lambda{|c,i| c.Config.Tty}, {:type=>:switch}],
|
||||
#['detach', '--detach', {:type=>:switch}],
|
||||
@ -31,17 +41,19 @@ MAPPINGS = [
|
||||
['working_dir', '--workdir', lambda{|c,i| (wd=c.Config.WorkingDir) == i.Config.WorkingDir ? nil : wd}],
|
||||
['init', '--init', lambda{|c,i| c.Config.Init}, {:type=>:switch}],
|
||||
['image', nil, lambda{|c,i| c.Config.Image}],
|
||||
['command', nil, lambda{|c,i| (cmd=c.Config.Cmd.join(" ") rescue nil) == (i.Config.Cmd.join(" ") rescue nil)? nil : cmd}, {:escape=>false}],
|
||||
['test', nil, nil, {type: :hidden}],
|
||||
['auto_update', nil, nil, {type: :hidden}]
|
||||
]
|
||||
|
||||
|
||||
def get_sample(name="container")
|
||||
return <<~HEREDOC
|
||||
#{name}:
|
||||
image: "my/image:1.2.3"
|
||||
restart: always
|
||||
detach: true
|
||||
test: true # Having this set to true will prevent dup from creating a label de.fabianonline.dup
|
||||
auto_update: true # Enabling this adds a label to allow watchtower to automatically update this container
|
||||
|
||||
ports:
|
||||
- "1234:1234"
|
||||
@ -55,24 +67,22 @@ def get_sample(name="container")
|
||||
volumes:
|
||||
- "/etc/localtime:/etc/localtime:ro"
|
||||
|
||||
links:
|
||||
- "another_container"
|
||||
|
||||
labels:
|
||||
com.centurylinklabs.watchtower.enable: true
|
||||
nginx_virtual_host: container.home.fabianonline.de
|
||||
nginx_virtual_host: container.home.schle.nz
|
||||
nginx_port: 80
|
||||
nginx_additional_ports: "443, 5050"
|
||||
nginx_allow: fabian # "user" or "@group" or "user, user, @group" or "all"
|
||||
nginx_no_robots: true
|
||||
nginx_public_paths: "/public, /api"
|
||||
nginx_type: # "http" (default), "fastcgi", "skip" (doesn't create any entries)
|
||||
nginx_type: # "http" (default), "https", "skip" (doesn't create any entries)
|
||||
nginx_client_max_body_size: 25M
|
||||
|
||||
networks:
|
||||
- "nginx"
|
||||
- "mosquitto"
|
||||
- "bridge"
|
||||
|
||||
test: true
|
||||
user: "1000:1000"
|
||||
command: "/bin/bash"
|
||||
entrypoint: "/script.sh"
|
||||
build: "/data/dir"
|
||||
@ -431,6 +441,7 @@ opts = GetoptLong.new(
|
||||
[ '--update', '-u', GetoptLong::NO_ARGUMENT ],
|
||||
[ '--_completion', GetoptLong::OPTIONAL_ARGUMENT ],
|
||||
[ '--host', GetoptLong::NO_ARGUMENT ],
|
||||
[ '--regenerate', GetoptLong::NO_ARGUMENT ],
|
||||
[ '--verbose', '-v', GetoptLong::NO_ARGUMENT ],
|
||||
[ '--all', GetoptLong::NO_ARGUMENT ],
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user