-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtardis.yml
More file actions
40 lines (36 loc) · 975 Bytes
/
tardis.yml
File metadata and controls
40 lines (36 loc) · 975 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
---
#
# This is an example of a Tardis Yaml configuration file.
# 1. Travis works with travel plans.
# 2. A travel plan is A git repository which contains multiple checkpoints.
# 3. Travis can have multiple travel plans inside one folder
#
#
# This is the initial folder where the defined
# travel plan will be checked out.
#
plan: database
- name: travel_plan_a-2014
image: postgres
version: latest # latest docker image
git: git@github.com:codechimp/postgres-integration.git
checkpoint: initial setup # current checkpoint
- name: travel_plan_b-2014
type: company/postgres
version: 9.1
git: git@github.com:codechimp/postgres-data.git
checkpoint: live-dump
# This plan results in the next data structure:
#
# database
# |-- travel_plan_a-2014
# | `-- postgres-data
# `-- travel_plan_b-2014
# `-- postgres-data
# there is
# tardis configure
# tardis save <checkpoint>
# tardis travel-to <checkpoint>
# tardis travel-back
# tardis list
# tardis switch