Viewing profile — xu6ahb8E
xu6ahb8E
HN member- Joined
- Tue, Jun 09, 2020, 11:03 AM UTC
- HN karma
- 57
- Public activity
- 4 items
- HN profile
- View on Hacker News ↗
About xu6ahb8E
No profile information was provided.
Recent public activity
-
comment
Comment #23465792
dokku is also meant to build a custom image on deploy : rather than using heroku's buildpacks, you can put a Dockerfile at the root of your project and it will be used instead. So …
-
comment
Comment #23465669
Yes, that's true, thanks for mentioning it. It comes from a time when I did not use docker so I wanted to get rid of build artifacts, but building within docker, this is not a prob…
-
comment
Comment #23465591
Here is an example of post-receive script I use for that: #!/usr/bin/env bash export APP=appname export DOCKER_OPTS="" unset GIT_DIR rm -rf /home/username/apps/$APP cd /home/userna…
-
comment
Comment #23465533
For those who have even simpler needs (like side projects, or 1 dev projects), I found using simply docker and git to be plenty enough. Basically, you can create a bare git reposit…