krz/skunky-art

Alternative privacy frontend for DeviantArt.

clone: git clone https://gitbay.org/krz/skunky-art.git

v1.4.0: compose.example.yaml · raw

 1services:
 2  skunkyart:
 3    container_name: skunkyart
 4    restart: unless-stopped
 5    # Published multi-arch image (linux/amd64, linux/arm64). Pin a release tag
 6    # (e.g. :1.3.3) instead of :latest if you want reproducible upgrades.
 7    image: ghcr.io/krazywarez/skunky-art:latest
 8    # To build from this checkout instead, comment out `image:` above and
 9    # uncomment the line below, then `docker compose up -d --build`.
10    #build: .
11    ports:
12      - "127.0.0.1:3003:3003"
13    security_opt:
14      - no-new-privileges:true
15    volumes:
16      - ./config.json:/config.json:ro
17      # The image runs as uid 10000, so the host cache dir must be writable by it:
18      #   mkdir -p cache && sudo chown -R 10000:10000 cache
19      # Without this the container exits at startup telling you the same thing.
20      - ./cache:/cache