Initial commit
This commit is contained in:
commit
fba34d4b88
31
.drone.yml
Normal file
31
.drone.yml
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: hello-world
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: docker
|
||||||
|
image: plugins/docker
|
||||||
|
settings:
|
||||||
|
username:
|
||||||
|
from_secret: docker_username
|
||||||
|
password:
|
||||||
|
from_secret: docker_password
|
||||||
|
tags:
|
||||||
|
- dev
|
||||||
|
repo: registry.diereuthers.de/docker-meteor-test
|
||||||
|
registry: registry.diereuthers.de
|
||||||
|
|
||||||
|
- name: notify
|
||||||
|
image: plugins/matrix
|
||||||
|
settings:
|
||||||
|
homeserver: https://chat.jgz-energie.net
|
||||||
|
roomid: trGYIJTkUTfbOVwwBc:chat.jgz-energie.net
|
||||||
|
username:
|
||||||
|
from_secret: matrix_username
|
||||||
|
password:
|
||||||
|
from_secret: matrix_password
|
||||||
|
when:
|
||||||
|
status:
|
||||||
|
- success
|
||||||
|
- failure
|
9
Dockerfile
Normal file
9
Dockerfile
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
# Dockerfile
|
||||||
|
FROM meteor/meteor-base
|
||||||
|
|
||||||
|
USER mt
|
||||||
|
WORKDIR /home/mt
|
||||||
|
RUN mkdir app
|
||||||
|
WORKDIR /home/mnt/app
|
||||||
|
|
||||||
|
CMD ["meteor"]
|
Loading…
x
Reference in New Issue
Block a user