diff options
Diffstat (limited to 'compose.example.yaml')
| -rwxr-xr-x | compose.example.yaml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/compose.example.yaml b/compose.example.yaml index 5eead70..2e2f088 100755 --- a/compose.example.yaml +++ b/compose.example.yaml @@ -2,7 +2,12 @@ services: skunkyart: container_name: skunkyart restart: unless-stopped - build: . + # Published multi-arch image (linux/amd64, linux/arm64). Pin a release tag + # (e.g. :1.3.3) instead of :latest if you want reproducible upgrades. + image: ghcr.io/zerolabsco/skunky-art:latest + # To build from this checkout instead, comment out `image:` above and + # uncomment the line below, then `docker compose up -d --build`. + #build: . ports: - "127.0.0.1:3003:3003" security_opt: |
