Skip to content

Commit fe0149c

Browse files
Create deployment instructions for Render (#236)
* Update README.md * Add render.yaml * Update CHANGELOG.md
1 parent bfbcf3a commit fe0149c

File tree

4 files changed

+55
-0
lines changed

4 files changed

+55
-0
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Changed
1111
- Sign images using cosign
1212
- Replace set-output with recommended env output ([#234](https://github.com/wabarc/wayback/pull/234))
13+
- Create deployment instructions for Render ([#236](https://github.com/wabarc/wayback/pull/236))
1314
- Specify dependencies for the distribution package ([#243](https://github.com/wabarc/wayback/pull/243))
1415

1516
## [0.18.1] - 2022-10-30

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -292,11 +292,19 @@ docker run -d wabarc/wayback wayback -d telegram -t YOUR-BOT-TOKEN -c YOUR-CHANN
292292
### 1-Click Deploy
293293

294294
[![Deploy](https://www.herokucdn.com/deploy/button.png)](https://heroku.com/deploy?template=https://github.com/wabarc/wayback)
295+
<a href="https://render.com/deploy?repo=https://github.com/wabarc/on-render">
296+
<img
297+
src="https://render.com/images/deploy-to-render-button.svg"
298+
alt="Deploy to Render"
299+
width="155px"
300+
/>
301+
</a>
295302

296303
## Deployment
297304

298305
- [wabarc/on-heroku](https://github.com/wabarc/on-heroku)
299306
- [wabarc/on-github](https://github.com/wabarc/on-github)
307+
- [wabarc/on-render](https://github.com/wabarc/on-render)
300308

301309
## TODO
302310

build/docker/Dockerfile.render

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Copyright 2022 Wayback Archiver. All rights reserved.
2+
# Use of this source code is governed by the GNU GPL v3
3+
# license that can be found in the LICENSE file.
4+
#
5+
# syntax=docker/dockerfile:1.2
6+
ARG WAYBACK_IMAGE_TAG=latest-bundle
7+
8+
FROM ghcr.io/wabarc/wayback:${WAYBACK_IMAGE_TAG}
9+
10+
ENV BASE_DIR /wayback
11+
ENV WAYBACK_TOR_LOCAL_PORT 80
12+
13+
WORKDIR ${BASE_DIR}
14+
15+
RUN set -ex; \
16+
chown wayback:nogroup /var/log/tor; \
17+
chown wayback:nogroup /var/lib/tor; \
18+
\
19+
setcap 'cap_net_bind_service=+ep' /usr/local/bin/wayback; \
20+
\
21+
sed -i 's/User/#User/g' /etc/tor/torrc
22+
23+
USER wayback
24+
25+
EXPOSE 80
26+
27+
CMD ["/usr/local/bin/wayback", "-d", "web"]

render.yaml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Copyright 2022 Wayback Archiver. All rights reserved.
2+
# Use of this source code is governed by the GNU GPL v3
3+
# license that can be found in the LICENSE file.
4+
#
5+
# More details see https://render.com/docs/blueprint-spec
6+
7+
services:
8+
- type: web
9+
name: wayback-starter
10+
plan: free
11+
env: docker
12+
autoDeploy: false
13+
healthCheckPath: /healthcheck
14+
dockerfilePath: ./build/docker/Dockerfile.render
15+
envVars:
16+
- key: PORT
17+
value: 80
18+
- key: WAYBACK_IPFS_APIKEY
19+
sync: false

0 commit comments

Comments
 (0)