-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.pull.yml
More file actions
14 lines (14 loc) · 761 Bytes
/
Copy pathdocker-compose.pull.yml
File metadata and controls
14 lines (14 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Overlay for pulling a pre-built image instead of building from source —
# manual only (docker compose -f docker-compose.yml -f docker-compose.pull.yml
# pull, then ... up -d); the guided setup wizard always builds locally, never
# offers this (see README's "Why build locally instead of pulling an image?").
# Kept out of the base docker-compose.yml so a plain `docker compose up -d
# --build` never references (or reaches out to) a registry image — it just
# builds and tags locally.
#
# No default here — this project doesn't publish a pre-built image itself.
# Set FONDWAYPOINTS_IMAGE in .env to wherever you build/push your own
# (e.g. your own Gitea instance's container registry, or Docker Hub).
services:
app:
image: ${FONDWAYPOINTS_IMAGE}