Skip to content
This repository was archived by the owner on Oct 25, 2019. It is now read-only.

Commit 0c3ef05

Browse files
committed
Add crane.yml for simpler creation of image and containers
1 parent 41a3ba9 commit 0c3ef05

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

crane.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
containers:
2+
gitlab_data:
3+
image: ubuntu:14.04
4+
run:
5+
cmd: ["/bin/true"]
6+
gitlab_app:
7+
image: genezys/gitlab:7.7.1
8+
dockerfile: .
9+
run:
10+
detach: true
11+
publish:
12+
- "8080:80"
13+
- "2222:22"
14+
volumes-from:
15+
- gitlab_data
16+
groups:
17+
default:
18+
- gitlab_app
19+
all:
20+
- gitlab_data
21+
- gitlab_app

0 commit comments

Comments
 (0)