Advertisement
Guest User

Untitled

a guest
Sep 9th, 2024
26
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | Software | 0 0
  1. name: beaverhabits
  2. services:
  3. beaverhabits:
  4. container_name: beaverhabits
  5. labels:
  6. - "com.centurylinklabs.watchtower.enable=true"
  7. environment:
  8. - FIRST_DAY_OF_WEEK=0
  9. - HABITS_STORAGE=USER_DISK
  10. ports:
  11. - 8345:8080
  12. restart: unless-stopped
  13. image: daya0576/beaverhabits:latest
Advertisement
Comments
  • daya0576
    244 days
    # text 0.51 KB | 0 0
    1. Hi, could u specify the "platform" option and try again: https://docs.docker.com/reference/compose-file/services/#platform
    2. ```
    3. name: beaverhabits
    4. services:
    5. beaverhabits:
    6. container_name: beaverhabits
    7. labels:
    8. - "com.centurylinklabs.watchtower.enable=true"
    9. environment:
    10. - FIRST_DAY_OF_WEEK=0
    11. - HABITS_STORAGE=USER_DISK
    12. ports:
    13. - 8345:8080
    14. restart: unless-stopped
    15. image: daya0576/beaverhabits:latest
    16. platform: linux/amd64 // here
    17. ```
Add Comment
Please, Sign In to add comment
Advertisement