pico
created pr with
36.1
added 36.2
1: c729638 = 1: c729638 chore: container logs to pipe
-: ------- > 2: ebfa197 chore: rm build ctx from pipemgr service
cmds
checkout latest patchset:
ssh pr.pico.sh print 36 | git am -3checkout any patchset in a patch request:
ssh pr.pico.sh print 36.[rev] | git am -3add changes to patch request:
git format-patch main --stdout | ssh pr.pico.sh pr add 36
Patchset
36.2
chore: container logs to pipe
Eric Bower
2024-11-20T04:59:03ZSemantic diff summary
0 added,
0 modified,
0 signature changed,
0 removed
across 0 analyzed files
(4 files skipped: unsupported file type)
+3
-0
.env.example
#
+2
-0
docker-compose.override.yml
#
+10
-0
docker-compose.prod.yml
#
+17
-0
docker-compose.yml
#
| ... | ... | @@ -29,6 +29,23 @@ services: | |
| 29 | 29 | profiles: | |
| 30 | 30 | - db | |
| 31 | 31 | - all | |
| 32 | + | pipemgr: | |
| 33 | + | build: | |
| 34 | + | context: . | |
| 35 | + | image: ghcr.io/picosh/pipemgr:latest | |
| 36 | + | restart: always | |
| 37 | + | volumes: | |
| 38 | + | - /var/run/docker.sock:/var/run/docker.sock:ro | |
| 39 | + | - ${PICO_PIPE_KEY}:/key:ro | |
| 40 | + | healthcheck: | |
| 41 | + | test: ["CMD", "curl", "-f", "http://localhost:8080/health"] | |
| 42 | + | interval: 2s | |
| 43 | + | timeout: 5s | |
| 44 | + | retries: 5 | |
| 45 | + | start_period: 1s | |
| 46 | + | profiles: | |
| 47 | + | - all | |
| 48 | + | - log | |
| 32 | 49 | pastes-web: | |
| 33 | 50 | image: ghcr.io/picosh/pico/pastes-web:latest | |
| 34 | 51 | restart: always |