-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathuser-data.yml
27 lines (25 loc) · 1.76 KB
/
user-data.yml
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
#cloud-config
coreos:
units:
- name: sentry.service
command: start
runtime: true
content: |
[Unit]
Description=Sentry service
Requires=docker.socket
After=docker.socket
[Service]
Type=oneshot
TimeoutStartSec=0
TimeoutStopSec=infinity
ExecStartPre=-/usr/bin/docker kill sentry-user my-sentry sentry-redis sentry-postgres sentry-cron sentry-worker-1
ExecStartPre=-/usr/bin/docker rm sentry-user my-sentry sentry-redis sentry-postgres sentry-cron sentry-worker-1
ExecStart=/usr/bin/docker run -d --name sentry-redis redis
ExecStart=/usr/bin/docker run -d --name sentry-postgres -e POSTGRES_PASSWORD=secret -e POSTGRES_USER=sentry postgres
Environment=SECRET_KEY=d(%g+zbi(5002iaxt=ktoh_o_wv&4zpgc4_b@t@-7y6ar5=w6q
ExecStart=/usr/bin/docker run -d --rm -e SENTRY_SECRET_KEY='${SECRET_KEY}' --link sentry-postgres:postgres --link sentry-redis:redis sentry upgrade --noinput
ExecStart=/usr/bin/docker run -d --name sentry-user -e SENTRY_SECRET_KEY='${SECRET_KEY}' --link sentry-postgres:postgres --link sentry-redis:redis sentry createuser --email [email protected] --password admin --superuser --no-input
ExecStart=/usr/bin/docker run -p 80:9000 -d --name my-sentry -e SENTRY_SECRET_KEY='${SECRET_KEY}' --link sentry-redis:redis --link sentry-postgres:postgres sentry
ExecStart=/usr/bin/docker run -d --name sentry-cron -e SENTRY_SECRET_KEY='${SECRET_KEY}' --link sentry-postgres:postgres --link sentry-redis:redis sentry run cron
ExecStart=/usr/bin/docker run -d --name sentry-worker-1 -e SENTRY_SECRET_KEY='${SECRET_KEY}' --link sentry-postgres:postgres --link sentry-redis:redis sentry run worker